mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Cache tarpaulin (#7)
* cache tarpaulin * add rustfmt and clippy gh actions * add test timeout * fix clippy warnings * disable code cov for macros * adjst tarpaulin * adjust tarpaulin
This commit is contained in:
parent
cb4df30a86
commit
6f9c6aabea
7 changed files with 89 additions and 52 deletions
38
.github/workflows/checks.yml
vendored
Normal file
38
.github/workflows/checks.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
name: Checks
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
clippy:
|
||||
name: Clippy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
components: clippy
|
||||
override: true
|
||||
- uses: actions-rs/clippy-check@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
args: --all-features
|
||||
|
||||
fmt:
|
||||
name: Rustfmt
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
rust:
|
||||
- stable
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: ${{ matrix.rust }}
|
||||
override: true
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: fmt
|
||||
args: --all -- --check
|
7
.github/workflows/linux.yml
vendored
7
.github/workflows/linux.yml
vendored
|
@ -48,6 +48,13 @@ jobs:
|
|||
path: target
|
||||
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Cache cargo tarpaulin
|
||||
if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/bin/cargo-tarpaulin
|
||||
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-tarpaulin
|
||||
|
||||
- name: check build
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<p><strong>This is personal project, please, do not use it</strong> </p>
|
||||
<p>
|
||||
|
||||
[/badge.svg)](https://travis-ci.org/ntex-rs/ntex)
|
||||
/badge.svg)
|
||||
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||
[](https://crates.io/crates/ntex)
|
||||
[](https://docs.rs/ntex)
|
||||
|
|
|
@ -2,6 +2,5 @@ ignore: # ignore codecoverage on following paths
|
|||
- "**/tests"
|
||||
- "**/benches"
|
||||
- "**/examples"
|
||||
- "**/actix-net"
|
||||
- "actix-net"
|
||||
- "ntex-web-macros"
|
||||
- "ntex-macros"
|
||||
- "ntex-rt-macros"
|
||||
|
|
|
@ -256,7 +256,7 @@ where
|
|||
}
|
||||
|
||||
// keep-alive book-keeping
|
||||
let _ = this.inner.poll_keepalive(cx, this.call.is_io())?;
|
||||
this.inner.poll_keepalive(cx, this.call.is_io())?;
|
||||
|
||||
// shutdown process
|
||||
if this.inner.flags.contains(Flags::SHUTDOWN) {
|
||||
|
@ -542,8 +542,7 @@ where
|
|||
fn poll_write(&mut self, cx: &mut Context<'_>) -> Result<PollWrite, DispatchError> {
|
||||
let mut flushed = false;
|
||||
|
||||
loop {
|
||||
if let Some(ref mut stream) = self.send_payload {
|
||||
while let Some(ref mut stream) = self.send_payload {
|
||||
// resize write buffer
|
||||
let len = self.write_buf.len();
|
||||
let remaining = self.write_buf.capacity() - len;
|
||||
|
@ -555,10 +554,8 @@ where
|
|||
match stream.poll_next_chunk(cx) {
|
||||
Poll::Ready(Some(Ok(item))) => {
|
||||
flushed = false;
|
||||
self.codec.encode(
|
||||
Message::Chunk(Some(item)),
|
||||
&mut self.write_buf,
|
||||
)?;
|
||||
self.codec
|
||||
.encode(Message::Chunk(Some(item)), &mut self.write_buf)?;
|
||||
}
|
||||
Poll::Ready(None) => {
|
||||
flushed = false;
|
||||
|
@ -586,9 +583,6 @@ where
|
|||
return Ok(PollWrite::Pending);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if !flushed {
|
||||
|
@ -657,7 +651,7 @@ where
|
|||
}
|
||||
|
||||
if self.read_buf.is_empty() {
|
||||
return Ok(PollRead::NoUpdates);
|
||||
Ok(PollRead::NoUpdates)
|
||||
} else {
|
||||
let result = self.input_decode();
|
||||
|
||||
|
|
|
@ -636,11 +636,7 @@ where
|
|||
};
|
||||
let (_, cfg, on_connect, peer_addr) = data.take().unwrap();
|
||||
self.as_mut().project().state.set(State::H2(Dispatcher::new(
|
||||
cfg.clone(),
|
||||
conn,
|
||||
on_connect,
|
||||
None,
|
||||
peer_addr,
|
||||
cfg, conn, on_connect, None, peer_addr,
|
||||
)));
|
||||
self.poll(cx)
|
||||
}
|
||||
|
|
|
@ -220,7 +220,10 @@ async fn test_connection_force_close() {
|
|||
assert!(response.status().is_success());
|
||||
|
||||
// req 2
|
||||
let req = client.post(srv.url("/")).force_close();
|
||||
let req = client
|
||||
.post(srv.url("/"))
|
||||
.timeout(Duration::from_secs(10))
|
||||
.force_close();
|
||||
let response = req.send().await.unwrap();
|
||||
assert!(response.status().is_success());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue