@@ -650,19 +650,14 @@ def test_motherduck_token_mask(make_config):
650
650
config_1 = make_config (
651
651
type = "motherduck" ,
652
652
token = "short" ,
653
- database = "md: whodunnit" ,
653
+ database = "whodunnit" ,
654
654
)
655
655
config_2 = make_config (
656
656
type = "motherduck" ,
657
- token = "short " ,
657
+ token = "longtoken123456789 " ,
658
658
database = "whodunnit" ,
659
659
)
660
660
config_3 = make_config (
661
- type = "motherduck" ,
662
- database = "md:whodunnit?motherduck_token=longtoken123456789" ,
663
- )
664
-
665
- config_4 = make_config (
666
661
type = "motherduck" ,
667
662
token = "secret1235" ,
668
663
catalogs = {
@@ -676,27 +671,23 @@ def test_motherduck_token_mask(make_config):
676
671
assert isinstance (config_1 , MotherDuckConnectionConfig )
677
672
assert isinstance (config_2 , MotherDuckConnectionConfig )
678
673
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"
681
675
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 } " )
683
677
== "md:whodunnit?motherduck_token=*****"
684
678
)
685
- assert config_1 ._mask_motherduck_token (config_1 .database ) == "md:whodunnit"
686
679
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 } "
689
682
)
690
683
== "md:whodunnit?attach_mode=single&motherduck_token=*****"
691
684
)
692
685
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 } " )
694
687
== "md:whodunnit?motherduck_token=******************"
695
688
)
696
689
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 } " )
700
691
== "md:?motherduck_token=**********"
701
692
)
702
693
assert (
0 commit comments