Skip to content

Commit

Permalink
Add a test for unified directories
Browse files Browse the repository at this point in the history
Verify that a unified directory, API V2 is selected.
  • Loading branch information
tlhackque committed Aug 10, 2021
1 parent 2f55c41 commit d7e3039
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions test/u6-test-combined-directory.bats
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#! /usr/bin/env bats

load '/bats-support/load.bash'
load '/bats-assert/load.bash'
load '/getssl/test/test_helper.bash'

# CA with a unified directory (both ACME V1 and V2 at the same URI)
CA="https://api.test4.buypass.no/acme"

# This is run for every test
setup() {
[ ! -f $BATS_TMPDIR/failed.skip ] || skip "skipping tests after first failure"

. /getssl/getssl --source

requires curl
_NOMETER="--silent"

_RUNNING_TEST=1
_USE_DEBUG=1
}


teardown() {
[ -n "$BATS_TEST_COMPLETED" ] || touch $BATS_TMPDIR/failed.skip
}


@test "Check that API V2 is selected in a unified ACME directory." {
obtain_ca_resource_locations

[ "$API" -eq 2 ]
}

0 comments on commit d7e3039

Please sign in to comment.