Should be returning status code 400 for ACME Account Not Found.

Issue #173
This commit is contained in:
max furman 2020-02-01 17:35:41 -08:00
parent 752bfeeccd
commit c255274572
6 changed files with 20 additions and 20 deletions

View file

@ -205,7 +205,7 @@ func TestHandlerGetOrder(t *testing.T) {
return test{
auth: &mockAcmeAuthority{},
ctx: context.WithValue(context.Background(), provisionerContextKey, prov),
statusCode: 404,
statusCode: 400,
problem: acme.AccountDoesNotExistErr(nil),
}
},
@ -215,7 +215,7 @@ func TestHandlerGetOrder(t *testing.T) {
return test{
auth: &mockAcmeAuthority{},
ctx: ctx,
statusCode: 404,
statusCode: 400,
problem: acme.AccountDoesNotExistErr(nil),
}
},
@ -343,7 +343,7 @@ func TestHandlerNewOrder(t *testing.T) {
"fail/no-account": func(t *testing.T) test {
return test{
ctx: context.WithValue(context.Background(), provisionerContextKey, prov),
statusCode: 404,
statusCode: 400,
problem: acme.AccountDoesNotExistErr(nil),
}
},
@ -352,7 +352,7 @@ func TestHandlerNewOrder(t *testing.T) {
ctx = context.WithValue(ctx, accContextKey, nil)
return test{
ctx: ctx,
statusCode: 404,
statusCode: 400,
problem: acme.AccountDoesNotExistErr(nil),
}
},
@ -597,7 +597,7 @@ func TestHandlerFinalizeOrder(t *testing.T) {
return test{
auth: &mockAcmeAuthority{},
ctx: context.WithValue(context.Background(), provisionerContextKey, prov),
statusCode: 404,
statusCode: 400,
problem: acme.AccountDoesNotExistErr(nil),
}
},
@ -607,7 +607,7 @@ func TestHandlerFinalizeOrder(t *testing.T) {
return test{
auth: &mockAcmeAuthority{},
ctx: ctx,
statusCode: 404,
statusCode: 400,
problem: acme.AccountDoesNotExistErr(nil),
}
},