Blob Blame History Raw
diff --git a/controls/anssi.yml b/controls/anssi.yml
index ff3736711dd..5c3d5f34ea8 100644
--- a/controls/anssi.yml
+++ b/controls/anssi.yml
@@ -72,6 +72,7 @@ controls:
       SELinux policies limit the privileges of services and daemons to only what they require.
     rules:
     - selinux_state
+    - var_selinux_state=enforcing
 
   - id: R4
     levels:
diff --git a/products/rhel8/profiles/anssi_bp28_enhanced.profile b/products/rhel8/profiles/anssi_bp28_enhanced.profile
index 2a49527c10a..8f2ee31493b 100644
--- a/products/rhel8/profiles/anssi_bp28_enhanced.profile
+++ b/products/rhel8/profiles/anssi_bp28_enhanced.profile
@@ -17,4 +17,3 @@ description: |-
 
 selections:
     - anssi:all:enhanced
-    - '!selinux_state'
diff --git a/products/rhel9/profiles/anssi_bp28_enhanced.profile b/products/rhel9/profiles/anssi_bp28_enhanced.profile
index 89e0d260390..da048c9b556 100644
--- a/products/rhel9/profiles/anssi_bp28_enhanced.profile
+++ b/products/rhel9/profiles/anssi_bp28_enhanced.profile
@@ -17,4 +17,3 @@ description: |-
 
 selections:
     - anssi:all:enhanced
-    - '!selinux_state'
diff --git a/tests/unit/ssg-module/data/controls_dir/abcd-levels.yml b/tests/unit/ssg-module/data/controls_dir/abcd-levels.yml
index 2e60ec43532..b201c495b8d 100644
--- a/tests/unit/ssg-module/data/controls_dir/abcd-levels.yml
+++ b/tests/unit/ssg-module/data/controls_dir/abcd-levels.yml
@@ -42,3 +42,29 @@ controls:
         rules:
           - var_password_pam_minlen=2
           - var_some_variable=3
+
+  # S5, S6 and S7 are used to test if level inheritance is working corectly
+  # when multiple levels select the same rule
+  - id: S5
+    title: Default Crypto Policy
+    levels:
+    - low
+    rules:
+      - configure_crypto_policy
+      - var_system_crypto_policy=default_policy
+
+  - id: S6
+    title: FIPS Crypto Policy
+    levels:
+    - medium
+    rules:
+      - configure_crypto_policy
+      - var_system_crypto_policy=fips
+
+  - id: S7
+    title: Future Crypto Policy
+    levels:
+    - high
+    rules:
+      - configure_crypto_policy
+      - var_system_crypto_policy=future
diff --git a/tests/unit/ssg-module/test_controls.py b/tests/unit/ssg-module/test_controls.py
index d3d6280042a..fb569280736 100644
--- a/tests/unit/ssg-module/test_controls.py
+++ b/tests/unit/ssg-module/test_controls.py
@@ -92,6 +92,20 @@ def test_controls_levels():
     c_4b = controls_manager.get_control("abcd-levels", "S4.b")
     assert c_4b.levels == ["high"]
 
+    c_5 = controls_manager.get_control("abcd-levels", "S5")
+    assert c_5.levels == ["low"]
+
+    c_6 = controls_manager.get_control("abcd-levels", "S6")
+    assert c_6.levels == ["medium"]
+
+    c_7 = controls_manager.get_control("abcd-levels", "S7")
+    assert c_7.levels == ["high"]
+
+    # test if all crypto-policy controls have the rule selected
+    assert "configure_crypto_policy" in c_5.selections
+    assert "configure_crypto_policy" in c_6.selections
+    assert "configure_crypto_policy" in c_7.selections
+
     # just the essential controls
     low_controls = controls_manager.get_all_controls_of_level(
         "abcd-levels", "low")
@@ -104,25 +118,34 @@ def test_controls_levels():
 
     assert len(high_controls) == len(all_controls)
     assert len(low_controls) <= len(high_controls)
-    assert len(low_controls) == 4
-    assert len(medium_controls) == 5
+    assert len(low_controls) == 5
+    assert len(medium_controls) == 7
 
     # test overriding of variables in levels
     assert c_2.variables["var_password_pam_minlen"] == "1"
     assert "var_password_pam_minlen" not in c_3.variables.keys()
     assert c_4b.variables["var_password_pam_minlen"] == "2"
 
+    variable_found = False
     for c in low_controls:
         if "var_password_pam_minlen" in c.variables.keys():
+            variable_found = True
             assert c.variables["var_password_pam_minlen"] == "1"
+    assert variable_found
 
+    variable_found = False
     for c in medium_controls:
         if "var_password_pam_minlen" in c.variables.keys():
+            variable_found = True
             assert c.variables["var_password_pam_minlen"] == "1"
+    assert variable_found
 
+    variable_found = False
     for c in high_controls:
         if "var_password_pam_minlen" in c.variables.keys():
+            variable_found = True
             assert c.variables["var_password_pam_minlen"] == "2"
+    assert variable_found
 
     # now test if controls of lower level has the variable definition correctly removed
     # because it is overriden by higher level controls
@@ -141,6 +164,28 @@ def test_controls_levels():
     assert s2_low[0].variables["var_some_variable"] == "1"
     assert s2_low[0].variables["var_password_pam_minlen"] == "1"
 
+    # check that low, medium and high levels have crypto policy selected
+    s5_low = [c for c in low_controls if c.id == "S5"]
+    assert len(s5_low) == 1
+    assert "configure_crypto_policy" in s5_low[0].selections
+
+    s5_medium = [c for c in medium_controls if c.id == "S5"]
+    assert len(s5_medium) == 1
+    assert "configure_crypto_policy" in s5_medium[0].selections
+    s6_medium = [c for c in medium_controls if c.id == "S6"]
+    assert len(s6_medium) == 1
+    assert "configure_crypto_policy" in s6_medium[0].selections
+
+    s5_high = [c for c in high_controls if c.id == "S5"]
+    assert len(s5_high) == 1
+    assert "configure_crypto_policy" in s5_high[0].selections
+    s6_high = [c for c in high_controls if c.id == "S6"]
+    assert len(s6_high) == 1
+    assert "configure_crypto_policy" in s6_high[0].selections
+    s7_high = [c for c in high_controls if c.id == "S7"]
+    assert len(s7_high) == 1
+    assert "configure_crypto_policy" in s7_high[0].selections
+
 
 def test_controls_load_product():
     product_yaml = os.path.join(ssg_root, "products", "rhel8", "product.yml")