From 0e33c1e879c12026b744c9ad046cd56c4996dc5c Mon Sep 17 00:00:00 2001
From: Gabeblis
Date: Mon, 30 Dec 2024 15:07:45 +0000
Subject: [PATCH] Add issue-1032 constraints and tests
---
features/fedramp_extensions.feature | 6 +++++
.../ssp/xml/fedramp-ssp-example.oscal.xml | 9 ++++++++
...mponent-has-authenticated-scan-INVALID.xml | 8 +++++++
...ry-item-has-authenticated-scan-INVALID.xml | 12 ++++++++++
.../fedramp-external-constraints.xml | 23 +++++++++++++++++++
...component-has-authenticated-scan-FAIL.yaml | 9 ++++++++
...component-has-authenticated-scan-PASS.yaml | 9 ++++++++
...tory-item-has-authenticated-scan-FAIL.yaml | 9 ++++++++
...tory-item-has-authenticated-scan-PASS.yaml | 9 ++++++++
9 files changed, 94 insertions(+)
create mode 100644 src/validations/constraints/content/ssp-component-has-authenticated-scan-INVALID.xml
create mode 100644 src/validations/constraints/content/ssp-inventory-item-has-authenticated-scan-INVALID.xml
create mode 100644 src/validations/constraints/unit-tests/component-has-authenticated-scan-FAIL.yaml
create mode 100644 src/validations/constraints/unit-tests/component-has-authenticated-scan-PASS.yaml
create mode 100644 src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-FAIL.yaml
create mode 100644 src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-PASS.yaml
diff --git a/features/fedramp_extensions.feature b/features/fedramp_extensions.feature
index d74753c1d..98a810851 100644
--- a/features/fedramp_extensions.feature
+++ b/features/fedramp_extensions.feature
@@ -36,6 +36,7 @@ Examples:
| cia-impact-has-adjustment-justification |
| cia-impact-has-selected |
| cloud-service-model |
+ | component-has-authenticated-scan |
| component-has-authentication-method |
| component-has-non-provider-responsible-role |
| component-has-provider-responsible-role |
@@ -115,6 +116,7 @@ Examples:
| interconnection-direction |
| interconnection-security |
| inventory-item-allows-authenticated-scan |
+ | inventory-item-has-authenticated-scan |
| inventory-item-public |
| inventory-item-virtual |
| last-accessed-is-datetime |
@@ -197,6 +199,8 @@ Examples:
| cia-impact-has-selected-PASS.yaml |
| cloud-service-model-FAIL.yaml |
| cloud-service-model-PASS.yaml |
+ | component-has-authenticated-scan-FAIL.yaml |
+ | component-has-authenticated-scan-PASS.yaml |
| component-has-authentication-method-FAIL.yaml |
| component-has-authentication-method-PASS.yaml |
| component-has-non-provider-responsible-role-FAIL.yaml |
@@ -355,6 +359,8 @@ Examples:
| interconnection-security-PASS.yaml |
| inventory-item-allows-authenticated-scan-FAIL.yaml |
| inventory-item-allows-authenticated-scan-PASS.yaml |
+ | inventory-item-has-authenticated-scan-FAIL.yaml |
+ | inventory-item-has-authenticated-scan-PASS.yaml |
| inventory-item-public-FAIL.yaml |
| inventory-item-public-PASS.yaml |
| inventory-item-virtual-FAIL.yaml |
diff --git a/src/content/rev5/examples/ssp/xml/fedramp-ssp-example.oscal.xml b/src/content/rev5/examples/ssp/xml/fedramp-ssp-example.oscal.xml
index 94b884867..c9e7e19ea 100644
--- a/src/content/rev5/examples/ssp/xml/fedramp-ssp-example.oscal.xml
+++ b/src/content/rev5/examples/ssp/xml/fedramp-ssp-example.oscal.xml
@@ -1518,6 +1518,7 @@ leveraged-authorization assembly:
+
@@ -1649,6 +1650,7 @@ property.
Describe the service and what it is used for.
+
@@ -2353,6 +2355,7 @@ preferable to the link[rel='validation'] example above.
+
@@ -2367,6 +2370,7 @@ preferable to the link[rel='validation'] example above.
+
@@ -2381,6 +2385,7 @@ preferable to the link[rel='validation'] example above.
+
@@ -2399,6 +2404,7 @@ preferable to the link[rel='validation'] example above.
Asset wasn't running at time of scan.
+
@@ -2412,6 +2418,7 @@ preferable to the link[rel='validation'] example above.
+
@@ -2430,6 +2437,7 @@ preferable to the link[rel='validation'] example above.
Asset wasn't running at time of scan.
+
@@ -2443,6 +2451,7 @@ preferable to the link[rel='validation'] example above.
+
diff --git a/src/validations/constraints/content/ssp-component-has-authenticated-scan-INVALID.xml b/src/validations/constraints/content/ssp-component-has-authenticated-scan-INVALID.xml
new file mode 100644
index 000000000..d831bef9c
--- /dev/null
+++ b/src/validations/constraints/content/ssp-component-has-authenticated-scan-INVALID.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/validations/constraints/content/ssp-inventory-item-has-authenticated-scan-INVALID.xml b/src/validations/constraints/content/ssp-inventory-item-has-authenticated-scan-INVALID.xml
new file mode 100644
index 000000000..8f5a1b05c
--- /dev/null
+++ b/src/validations/constraints/content/ssp-inventory-item-has-authenticated-scan-INVALID.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/validations/constraints/fedramp-external-constraints.xml b/src/validations/constraints/fedramp-external-constraints.xml
index 1f1d2cc54..e4a368ffc 100644
--- a/src/validations/constraints/fedramp-external-constraints.xml
+++ b/src/validations/constraints/fedramp-external-constraints.xml
@@ -637,6 +637,29 @@
+
+
+
+
+ Component Has Authenticated Scan
+
+ In a FedRAMP SSP, each internal service component MUST state whether it allows authenticated scans.
+
+
+
+
+
+
+
+
+
+ Inventory Item Has Authenticated Scan
+
+ In a FedRAMP SSP, each inventory item MUST state whether it allows authenticated scans in the inventory item itself or within the linked component.
+
+
+
+
diff --git a/src/validations/constraints/unit-tests/component-has-authenticated-scan-FAIL.yaml b/src/validations/constraints/unit-tests/component-has-authenticated-scan-FAIL.yaml
new file mode 100644
index 000000000..9640ee3c6
--- /dev/null
+++ b/src/validations/constraints/unit-tests/component-has-authenticated-scan-FAIL.yaml
@@ -0,0 +1,9 @@
+test-case:
+ name: Negative Test for component-has-authenticated-scan
+ description: >-
+ This test case validates the behavior of constraint
+ component-has-authenticated-scan
+ content: ../content/ssp-component-has-authenticated-scan-INVALID.xml
+ expectations:
+ - constraint-id: component-has-authenticated-scan
+ result: fail
diff --git a/src/validations/constraints/unit-tests/component-has-authenticated-scan-PASS.yaml b/src/validations/constraints/unit-tests/component-has-authenticated-scan-PASS.yaml
new file mode 100644
index 000000000..489f96149
--- /dev/null
+++ b/src/validations/constraints/unit-tests/component-has-authenticated-scan-PASS.yaml
@@ -0,0 +1,9 @@
+test-case:
+ name: Positive Test for component-has-authenticated-scan
+ description: >-
+ This test case validates the behavior of constraint
+ component-has-authenticated-scan
+ content: ../../../content/rev5/examples/ssp/xml/fedramp-ssp-example.oscal.xml
+ expectations:
+ - constraint-id: component-has-authenticated-scan
+ result: pass
diff --git a/src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-FAIL.yaml b/src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-FAIL.yaml
new file mode 100644
index 000000000..218802efc
--- /dev/null
+++ b/src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-FAIL.yaml
@@ -0,0 +1,9 @@
+test-case:
+ name: Negative Test for inventory-item-has-authenticated-scan
+ description: >-
+ This test case validates the behavior of constraint
+ inventory-item-has-authenticated-scan
+ content: ../content/ssp-inventory-item-has-authenticated-scan-INVALID.xml
+ expectations:
+ - constraint-id: inventory-item-has-authenticated-scan
+ result: fail
diff --git a/src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-PASS.yaml b/src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-PASS.yaml
new file mode 100644
index 000000000..13a912a94
--- /dev/null
+++ b/src/validations/constraints/unit-tests/inventory-item-has-authenticated-scan-PASS.yaml
@@ -0,0 +1,9 @@
+test-case:
+ name: Positive Test for inventory-item-has-authenticated-scan
+ description: >-
+ This test case validates the behavior of constraint
+ inventory-item-has-authenticated-scan
+ content: ../../../content/rev5/examples/ssp/xml/fedramp-ssp-example.oscal.xml
+ expectations:
+ - constraint-id: inventory-item-has-authenticated-scan
+ result: pass