| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // Copyright 2019 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package acme
- import (
- "context"
- "fmt"
- "net/http"
- "net/http/httptest"
- "testing"
- )
- // While contents of this file is pertinent only to RFC8555,
- // it is complementary to the tests in the other _test.go files
- // many of which are valid for both pre- and RFC8555.
- // This will make it easier to clean up the tests once non-RFC compliant
- // code is removed.
- func TestRFC_Discover(t *testing.T) {
- const (
- nonce = "https://example.com/acme/new-nonce"
- reg = "https://example.com/acme/new-acct"
- order = "https://example.com/acme/new-order"
- authz = "https://example.com/acme/new-authz"
- revoke = "https://example.com/acme/revoke-cert"
- keychange = "https://example.com/acme/key-change"
- metaTerms = "https://example.com/acme/terms/2017-5-30"
- metaWebsite = "https://www.example.com/"
- metaCAA = "example.com"
- )
- ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/json")
- fmt.Fprintf(w, `{
- "newNonce": %q,
- "newAccount": %q,
- "newOrder": %q,
- "newAuthz": %q,
- "revokeCert": %q,
- "keyChange": %q,
- "meta": {
- "termsOfService": %q,
- "website": %q,
- "caaIdentities": [%q],
- "externalAccountRequired": true
- }
- }`, nonce, reg, order, authz, revoke, keychange, metaTerms, metaWebsite, metaCAA)
- }))
- defer ts.Close()
- c := Client{DirectoryURL: ts.URL}
- dir, err := c.Discover(context.Background())
- if err != nil {
- t.Fatal(err)
- }
- if dir.NonceURL != nonce {
- t.Errorf("dir.NonceURL = %q; want %q", dir.NonceURL, nonce)
- }
- if dir.RegURL != reg {
- t.Errorf("dir.RegURL = %q; want %q", dir.RegURL, reg)
- }
- if dir.OrderURL != order {
- t.Errorf("dir.OrderURL = %q; want %q", dir.OrderURL, order)
- }
- if dir.AuthzURL != authz {
- t.Errorf("dir.AuthzURL = %q; want %q", dir.AuthzURL, authz)
- }
- if dir.RevokeURL != revoke {
- t.Errorf("dir.RevokeURL = %q; want %q", dir.RevokeURL, revoke)
- }
- if dir.KeyChangeURL != keychange {
- t.Errorf("dir.KeyChangeURL = %q; want %q", dir.KeyChangeURL, keychange)
- }
- if dir.Terms != metaTerms {
- t.Errorf("dir.Terms = %q; want %q", dir.Terms, metaTerms)
- }
- if dir.Website != metaWebsite {
- t.Errorf("dir.Website = %q; want %q", dir.Website, metaWebsite)
- }
- if len(dir.CAA) == 0 || dir.CAA[0] != metaCAA {
- t.Errorf("dir.CAA = %q; want [%q]", dir.CAA, metaCAA)
- }
- if !dir.ExternalAccountRequired {
- t.Error("dir.Meta.ExternalAccountRequired is false")
- }
- }
- func TestRFC_popNonce(t *testing.T) {
- var count int
- ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- // The Client uses only Directory.NonceURL when specified.
- // Expect no other URL paths.
- if r.URL.Path != "/new-nonce" {
- t.Errorf("r.URL.Path = %q; want /new-nonce", r.URL.Path)
- }
- if count > 0 {
- w.WriteHeader(http.StatusTooManyRequests)
- return
- }
- count++
- w.Header().Set("Replay-Nonce", "second")
- }))
- cl := &Client{
- DirectoryURL: ts.URL,
- dir: &Directory{NonceURL: ts.URL + "/new-nonce"},
- }
- cl.addNonce(http.Header{"Replay-Nonce": {"first"}})
- for i, nonce := range []string{"first", "second"} {
- v, err := cl.popNonce(context.Background(), "")
- if err != nil {
- t.Errorf("%d: cl.popNonce: %v", i, err)
- }
- if v != nonce {
- t.Errorf("%d: cl.popNonce = %q; want %q", i, v, nonce)
- }
- }
- // No more nonces and server replies with an error past first nonce fetch.
- // Expected to fail.
- if _, err := cl.popNonce(context.Background(), ""); err == nil {
- t.Error("last cl.popNonce returned nil error")
- }
- }
|