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:
Nikolay Kim 2020-04-05 09:51:07 +06:00 committed by GitHub
parent cb4df30a86
commit 6f9c6aabea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 89 additions and 52 deletions

38
.github/workflows/checks.yml vendored Normal file
View 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

View file

@ -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:

View file

@ -3,7 +3,7 @@
<p><strong>This is personal project, please, do not use it</strong> </p>
<p>
[![Build Status](https://github.com/ntex-rs/ntex/workflows/CI%20(Linux)/badge.svg)](https://travis-ci.org/ntex-rs/ntex)
![Build Status](https://github.com/ntex-rs/ntex/workflows/CI%20(Linux)/badge.svg)
[![codecov](https://codecov.io/gh/ntex-rs/ntex/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex)
[![crates.io](https://meritbadge.herokuapp.com/ntex)](https://crates.io/crates/ntex)
[![Documentation](https://docs.rs/ntex/badge.svg)](https://docs.rs/ntex)

View file

@ -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"

View file

@ -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();

View file

@ -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)
}

View file

@ -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());