Skip to content

Commit 7e44ea4

Browse files
committed
feedback improvements: link todo to ticket
1 parent 38e4a27 commit 7e44ea4

7 files changed

+13
-13
lines changed

.evergreen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ task_groups:
749749
- e2e_sharded_cluster_scram_sha_256_switch_project
750750
- e2e_replica_set_scram_sha_1_switch_project
751751
- e2e_sharded_cluster_scram_sha_1_switch_project
752-
# Disabled these tests as they don't use the password secret, and project migrations aren't fully supported yet.
752+
# TODO CLOUDP-349093 - Disabled these tests as they don't use the password secret, and project migrations aren't fully supported yet.
753753
# e2e_sharded_cluster_x509_switch_project
754754
# e2e_replica_set_x509_switch_project
755755
# e2e_replica_set_ldap_switch_project

docker/mongodb-kubernetes-tests/tests/authentication/replica_set_ldap_switch_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class TestReplicaSetLDAPProjectSwitch(KubernetesTester):
115115
def test_create_replica_set(self, testhelper: ReplicaSetSwitchProjectHelper):
116116
testhelper.test_create_replica_set()
117117

118-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
118+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
119119
# def test_create_ldap_user(self, user_ldap: MongoDBUser):
120120
# user_ldap.assert_reaches_phase(Phase.Updated)
121121

@@ -139,7 +139,7 @@ def test_ops_manager_state_correctly_updated_in_initial_replica_set(
139139
def test_switch_replica_set_project(self, testhelper: ReplicaSetSwitchProjectHelper):
140140
testhelper.test_switch_replica_set_project()
141141

142-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
142+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
143143
# def test_ops_manager_state_with_users_correctly_updated_after_switch(
144144
# self, testhelper: ReplicaSetSwitchProjectHelper
145145
# ):

docker/mongodb-kubernetes-tests/tests/authentication/replica_set_scram_sha_1_switch_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_ops_manager_state_correctly_updated_in_initial_replica_set(
5656
):
5757
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
5858

59-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
59+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
6060
# def test_create_secret(self):
6161
# create_or_update_secret(
6262
# KubernetesTester.get_namespace(),
@@ -98,7 +98,7 @@ def test_replica_set_connectivity_after_switch(self, testhelper: ReplicaSetSwitc
9898
def test_ops_manager_state_correctly_updated_after_switch(self, testhelper: ReplicaSetSwitchProjectHelper):
9999
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
100100

101-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
101+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
102102
# def test_ops_manager_state_with_users_correctly_updated_after_switch(
103103
# self, testhelper: ReplicaSetSwitchProjectHelper
104104
# ):

docker/mongodb-kubernetes-tests/tests/authentication/replica_set_scram_sha_256_switch_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_replica_set_connectivity(self, testhelper: ReplicaSetSwitchProjectHelpe
5151
def test_ops_manager_state_correctly_updated(self, testhelper: ReplicaSetSwitchProjectHelper):
5252
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
5353

54-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
54+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
5555
# def test_create_secret(self):
5656
# create_or_update_secret(
5757
# KubernetesTester.get_namespace(),
@@ -93,7 +93,7 @@ def test_replica_set_connectivity_after_switch(self, testhelper: ReplicaSetSwitc
9393
def test_ops_manager_state_correctly_updated_after_switch(self, testhelper: ReplicaSetSwitchProjectHelper):
9494
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
9595

96-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
96+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
9797
# def test_ops_manager_state_with_users_correctly_updated_after_switch(
9898
# self, testhelper: ReplicaSetSwitchProjectHelper
9999
# ):

docker/mongodb-kubernetes-tests/tests/authentication/sharded_cluster_ldap_switch_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def wait_for_ac_pushed() -> bool:
122122
def test_sharded_cluster_CLOUDP_229222(self, sharded_cluster: MongoDB, ldap_mongodb_users: List[LDAPUser]):
123123
sharded_cluster.assert_reaches_phase(Phase.Running, timeout=800)
124124

125-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
125+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
126126
# def test_new_mdb_users_are_created(self, ldap_user_mongodb: MongoDBUser):
127127
# ldap_user_mongodb.assert_reaches_phase(Phase.Updated)
128128

@@ -134,7 +134,7 @@ def test_ops_manager_state_correctly_updated_in_initial_cluster(
134134
def test_switch_sharded_cluster_project(self, testhelper: ShardedClusterSwitchProjectHelper):
135135
testhelper.test_switch_sharded_cluster_project()
136136

137-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
137+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
138138
# def test_ops_manager_state_correctly_updated_after_switch(self, testhelper: ShardedClusterSwitchProjectHelper):
139139
# testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
140140
# # There should be one user (the previously created user should still exist in the automation configuration). We need to investigate further to understand why the user is not being picked up.

docker/mongodb-kubernetes-tests/tests/authentication/sharded_cluster_scram_sha_1_switch_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def test_ops_manager_state_correctly_updated_in_initial_sharded_cluster(
6060
):
6161
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
6262

63-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
63+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
6464
# def test_create_secret(self):
6565
# create_or_update_secret(
6666
# KubernetesTester.get_namespace(),
@@ -103,7 +103,7 @@ def test_sharded_cluster_connectivity_after_switch(self, testhelper: ShardedClus
103103
def test_ops_manager_state_correctly_updated_after_switch(self, testhelper: ShardedClusterSwitchProjectHelper):
104104
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
105105

106-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
106+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
107107
# def test_ops_manager_state_with_users_correctly_updated_after_switch(
108108
# self, testhelper: ShardedClusterSwitchProjectHelper
109109
# ):

docker/mongodb-kubernetes-tests/tests/authentication/sharded_cluster_scram_sha_256_switch_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def test_ops_manager_state_correctly_updated_in_initial_sharded_cluster(
6060
):
6161
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
6262

63-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
63+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
6464
# def test_create_secret(self):
6565
# create_or_update_secret(
6666
# KubernetesTester.get_namespace(),
@@ -103,7 +103,7 @@ def test_sharded_cluster_connectivity_after_switch(self, testhelper: ShardedClus
103103
def test_ops_manager_state_correctly_updated_after_switch(self, testhelper: ShardedClusterSwitchProjectHelper):
104104
testhelper.test_ops_manager_state_with_expected_authentication(expected_users=0)
105105

106-
# Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
106+
# TODO CLOUDP-349093 - Disabled these tests because project migrations are not supported yet, which could lead to flaky behavior.
107107
# def test_ops_manager_state_with_users_correctly_updated_after_switch(
108108
# self, testhelper: ShardedClusterSwitchProjectHelper
109109
# ):

0 commit comments

Comments
 (0)