Skip to content

Commit db4f236

Browse files
committed
tink-tests: add boringssl feature
1 parent c408d95 commit db4f236

File tree

6 files changed

+24
-4
lines changed

6 files changed

+24
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
profile: minimal
127127
toolchain: stable
128128
- run: rustc --version
129-
- run: cargo doc --no-deps --document-private-items --all-features
129+
- run: cargo doc --no-deps --document-private-items --all-features --workspace --exclude tink-tests
130130

131131
udeps:
132132
runs-on: ubuntu-latest

tests/Cargo.toml

+17-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ keywords = ["cryptography", "tink", "testing"]
1010
categories = ["cryptography"]
1111
publish = false
1212

13+
[features]
14+
default = ["kms"]
15+
# The `tink-awskms` crates indirectly depend on OpenSSL, which cannot be linked at the
16+
# same time as BoringSSL. Switch to BoringSSL mode with
17+
# --no-default-features --features boringssl
18+
#
19+
# Note that this means that the features of this crate are *not* additive; turning on
20+
# --all-features results in link failures.
21+
boringssl = ["tink-daead/boringssl"]
22+
kms = ["tink-awskms", "tink-gcpkms"]
23+
1324
[dependencies]
1425
base64 = "^0.13"
1526
ed25519-dalek = "^1.0.1"
@@ -21,9 +32,11 @@ rand = "^0.7"
2132
regex = "^1.5.4"
2233
serde = { version = "^1.0.126", features = ["derive"] }
2334
serde_json = "^1.0.64"
24-
tink-core = { version = "^0.2", features = ["insecure", "json"] }
2535
tink-aead = "^0.2"
36+
tink-awskms = { version = "^0.2", optional = true }
37+
tink-core = { version = "^0.2", features = ["insecure", "json"] }
2638
tink-daead = "^0.2"
39+
tink-gcpkms = { version = "^0.2", optional = true }
2740
tink-mac = "^0.2"
2841
tink-proto = "^0.2"
2942

@@ -34,10 +47,11 @@ lazy_static = "^1.4"
3447
maplit = "^1.0.2"
3548
tempfile = "^3.2"
3649
tink-aead = "^0.2"
37-
tink-awskms = "^0.2"
3850
tink-daead = "^0.2"
39-
tink-gcpkms = "^0.2"
4051
tink-mac = "^0.2"
4152
tink-prf = "^0.2"
4253
tink-signature = "^0.2"
4354
tink-streaming-aead = "^0.2"
55+
56+
[package.metadata.cargo-udeps.ignore]
57+
normal = ["tink-awskms", "tink-gcpkms"]

tests/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
1919
#![deny(broken_intra_doc_links)]
2020

21+
#[cfg(all(feature = "boringssl", feature = "kms"))]
22+
compile_error!("features \"boringssl\" and \"kms\" cannot co-exist due to linker clashes between BoringSSL and OpenSSL");
23+
2124
use generic_array::typenum::Unsigned;
2225
use p256::elliptic_curve;
2326
use serde::{Deserialize, Serialize};

tests/tests/aead/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ mod aes_gcm_siv_key_manager_test;
2222
mod chacha20poly1305_key_manager_test;
2323
mod integration_test;
2424
mod kms_envelope_aead_test;
25+
#[cfg(feature = "kms")]
2526
mod kms_envelope_key_manager_test;
2627
mod xchacha20poly1305_key_manager_test;
2728

tests/tests/awskms_test.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
//
1515
////////////////////////////////////////////////////////////////////////////////
1616

17+
#[cfg(feature = "kms")]
1718
mod awskms;

tests/tests/gcpkms_test.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
//
1515
////////////////////////////////////////////////////////////////////////////////
1616

17+
#[cfg(feature = "kms")]
1718
mod gcpkms;

0 commit comments

Comments
 (0)