Skip to content

Commit 1d6daf9

Browse files
committed
fix test
1 parent 75963a1 commit 1d6daf9

File tree

1 file changed

+8
-17
lines changed

1 file changed

+8
-17
lines changed

tests/core/test_connection_config.py

+8-17
Original file line numberDiff line numberDiff line change
@@ -650,19 +650,14 @@ def test_motherduck_token_mask(make_config):
650650
config_1 = make_config(
651651
type="motherduck",
652652
token="short",
653-
database="md:whodunnit",
653+
database="whodunnit",
654654
)
655655
config_2 = make_config(
656656
type="motherduck",
657-
token="short",
657+
token="longtoken123456789",
658658
database="whodunnit",
659659
)
660660
config_3 = make_config(
661-
type="motherduck",
662-
database="md:whodunnit?motherduck_token=longtoken123456789",
663-
)
664-
665-
config_4 = make_config(
666661
type="motherduck",
667662
token="secret1235",
668663
catalogs={
@@ -676,27 +671,23 @@ def test_motherduck_token_mask(make_config):
676671
assert isinstance(config_1, MotherDuckConnectionConfig)
677672
assert isinstance(config_2, MotherDuckConnectionConfig)
678673
assert isinstance(config_3, MotherDuckConnectionConfig)
679-
assert isinstance(config_4, MotherDuckConnectionConfig)
680-
assert config_1._mask_motherduck_token(config_1.database) == "md:whodunnit"
674+
assert config_1._mask_motherduck_token(config_1.database) == "whodunnit"
681675
assert (
682-
config_1._mask_motherduck_token(f"{config_1.database}?motherduck_token={config_1.token}")
676+
config_1._mask_motherduck_token(f"md:{config_1.database}?motherduck_token={config_1.token}")
683677
== "md:whodunnit?motherduck_token=*****"
684678
)
685-
assert config_1._mask_motherduck_token(config_1.database) == "md:whodunnit"
686679
assert (
687-
config_2._mask_motherduck_token(
688-
f"md:{config_2.database}?attach_mode=single&motherduck_token={config_2.token}"
680+
config_1._mask_motherduck_token(
681+
f"md:{config_1.database}?attach_mode=single&motherduck_token={config_1.token}"
689682
)
690683
== "md:whodunnit?attach_mode=single&motherduck_token=*****"
691684
)
692685
assert (
693-
config_3._mask_motherduck_token(config_3.database)
686+
config_2._mask_motherduck_token(f"md:{config_2.database}?motherduck_token={config_2.token}")
694687
== "md:whodunnit?motherduck_token=******************"
695688
)
696689
assert (
697-
config_4._mask_motherduck_token(
698-
f"{config_4.database or 'md:'}?motherduck_token={config_4.token}"
699-
)
690+
config_3._mask_motherduck_token(f"md:?motherduck_token={config_3.token}")
700691
== "md:?motherduck_token=**********"
701692
)
702693
assert (

0 commit comments

Comments
 (0)