Browse Source

Add a test for unified directories

Verify that a unified directory, API V2 is selected.
pull/691/head
Timothe Litt 4 years ago
parent
commit
d7e3039308
Failed to extract signature
1 changed files with 34 additions and 0 deletions
  1. +34
    -0
      test/u6-test-combined-directory.bats

+ 34
- 0
test/u6-test-combined-directory.bats View File

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

Loading…
Cancel
Save