ACVP icon indicating copy to clipboard operation
ACVP copied to clipboard

Test session not marked as passed, despite all vector sets passing

Open AlexThurston opened this issue 3 years ago • 1 comments

environment Demo

testSessionId 88644

vsId N/A

Algorithm registration N/A

Endpoint in which the error is experienced GET https://demo.acvts.nist.gov/acvp/v1/testSessions/88644/results

Expected behaviour This test session has 3 vectors set which are all marked as passed but over-arching passed field is marked as false.

[
  {
    "acvVersion": "1.0"
  },
  {
    "passed": false,
    "results": [
      {
        "vectorSetUrl": "/acvp/v1/testSessions/88644/vectorSets/227932",
        "status": "passed"
      },
      {
        "vectorSetUrl": "/acvp/v1/testSessions/88644/vectorSets/227933",
        "status": "passed"
      },
      {
        "vectorSetUrl": "/acvp/v1/testSessions/88644/vectorSets/227934",
        "status": "passed"
      }
    ]
  }
]

AlexThurston avatar Aug 04 '20 17:08 AlexThurston

The test session was last touched on 6/12, so it expired 30 days later. The "passed" value is based on our internal test session status, which is now Expired, so it winds up being false.

This is a case where the protocol specification doesn't match what we actually need to express here. We should be expressing a status, not just a simple pass/fail. While in this case the test session expired, we could wind up in similarly odd situations from other causes, like a test session being cancelled - even certifying a test session will cause this field to be inaccurate. This is something we should change to be more expressive in a future revision of the protocol spec.

shaneshaffer avatar Aug 05 '20 16:08 shaneshaffer