Skip to content

Commit

Permalink
Better place for test
Browse files Browse the repository at this point in the history
  • Loading branch information
MeneDev committed Dec 2, 2024
1 parent 8e2cdc1 commit 505d267
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/e2e/manifests/chi/test-016-settings-03.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
users:
user2/profile: default
user2/quota: default
user2/password: needs<Xml&escaping # test for xml-special characters
user2/password: qwerty
user2/networks/ip: "::/0"
settings:
dictionaries_config: config.d/dict_*.xml
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/manifests/chi/test-016-settings-04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
users:
user2/profile: default
user2/quota: default
user2/password: needs<Xml&escaping # test for xml-special characters
user2/password: qwerty
user2/networks/ip: "::/0"
settings:
dictionaries_config: config.d/dict_*.xml
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/manifests/chi/test-016-settings-05.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
users:
user2/profile: default
user2/quota: default
user2/password: needs<Xml&escaping # test for xml-special characters
user2/password: qwerty
user2/networks/ip: "::/0"
settings:
dictionaries_config: config.d/dict_*.xml
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/manifests/chi/test-016-settings-06.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
users:
user2/profile: default
user2/quota: default
user2/password: needs<Xml&escaping # test for xml-special characters
user2/password: qwerty
user2/networks/ip: "::/0"
settings:
macros/layer: "03"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/manifests/chi/test-016-settings-07.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
users:
user2/profile: default
user2/quota: default
user2/password: needs<Xml&escaping # test for xml-special characters
user2/password: qwerty
user2/networks/ip: "::/0"
settings:
macros/layer: "03"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/test_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1821,7 +1821,7 @@ def test_016(self):
version_user1 = clickhouse.query_with_error(chi, sql="select version()", user="user1", pwd="qwerty")
assert version != version_user1
with And("user2 user should be available"):
version_user2 = clickhouse.query(chi, sql="select version()", user="user2", pwd="qwerty")
version_user2 = clickhouse.query(chi, sql="select version()", user="user2", pwd="needs<Xml&escaping")
assert version == version_user2
with And("ClickHouse SHOULD NOT be restarted"):
new_start_time = kubectl.get_field("pod", f"chi-{chi}-default-0-0-0", ".status.startTime")
Expand Down

0 comments on commit 505d267

Please sign in to comment.