Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
179 changes: 179 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 14 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
[workspace]
resolver = "2"
members = [".", "./krilltest"]

[workspace.package]
authors = ["NLnet Labs <rpki-team@nlnetlabs.nl>"]
edition = "2024"
rust-version = "1.88"
license = "MPL-2.0"

[package]
# Note: some of these values are also used when building Debian packages below.
name = "krill"
version = "0.17.0-dev"
edition = "2024"
rust-version = "1.88"
authors = ["NLnet Labs <rpki-team@nlnetlabs.nl>"]
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "Resource Public Key Infrastructure (RPKI) daemon"
homepage = "https://www.nlnetlabs.nl/projects/routing/krill/"
repository = "https://github.com/NLnetLabs/krill"
keywords = ["rpki", "routing-security", "bgp"]
readme = "README.md"
license = "MPL-2.0"
exclude = [
"test-resources/*",
"tests/*",
Expand Down
17 changes: 17 additions & 0 deletions krilltest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "krilltest"
version = "0.1.0"
description = "End-to-end testing for Krill"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true

[dependencies]
krill = { path = ".." }
clap = { version = "*", features = ["cargo", "derive"]}
nix = { version = "*", features = ["signal"] }
rcgen = "0.14"
reqwest = { version = "*", features = ["blocking"] }
tempfile = "*"

4 changes: 4 additions & 0 deletions krilltest/TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This file contains a number of scenarios that we should write tests for.

* external publication server
* switch from one server to another
Loading
Loading