Beispiel #1
0
 def test_matches_works(self):
     # Countries are always made in migrations
     country = Country.objects.get(code='US')
     client1 = ClientFactory(country='US')
     client2 = ClientFactory(country='DE')
     assert country.matches(client1)
     assert not country.matches(client2)
Beispiel #2
0
    def test_filter_by_locale_one(self):
        locale1 = LocaleFactory()
        locale2 = LocaleFactory()
        recipe = RecipeFactory(locales=[locale1])
        client1 = ClientFactory(locale=locale1.code)
        client2 = ClientFactory(locale=locale2.code)

        assert recipe.matches(client1)
        assert not recipe.matches(client2)
Beispiel #3
0
    def test_filter_by_channel_one(self):
        beta = ReleaseChannelFactory(slug='beta')
        recipe = RecipeFactory(release_channels=[beta])

        release_client = ClientFactory(release_channel='release')
        beta_client = ClientFactory(release_channel='beta')

        assert not recipe.matches(release_client)
        assert recipe.matches(beta_client)
Beispiel #4
0
    def test_filter_by_country_one(self):
        country1 = CountryFactory()
        country2 = CountryFactory()
        recipe = RecipeFactory(countries=[country1])
        client1 = ClientFactory(country=country1.code)
        client2 = ClientFactory(country=country2.code)

        assert recipe.matches(client1)
        assert not recipe.matches(client2)
Beispiel #5
0
    def test_filter_by_channel_many(self):
        release = ReleaseChannelFactory(slug='release')
        beta = ReleaseChannelFactory(slug='beta')
        recipe = RecipeFactory(release_channels=[release, beta])

        release_client = ClientFactory(release_channel='release')
        beta_client = ClientFactory(release_channel='beta')
        aurora_client = ClientFactory(release_channel='aurora')

        assert recipe.matches(release_client)
        assert recipe.matches(beta_client)
        assert not recipe.matches(aurora_client)
Beispiel #6
0
    def test_filter_exclude_many(self):
        locale_match1, locale_match2, locale_not = LocaleFactory.create_batch(3)
        recipe = RecipeFactory(locales=[locale_match1, locale_match2])
        client = ClientFactory(locale=locale_not.code)

        assert not recipe.matches(client)
        assert recipe.matches(client, exclude=[get_locales])
Beispiel #7
0
    def test_filter_by_sample_rate(self):
        always_match = RecipeFactory(sample_rate=1.0)
        never_match = RecipeFactory(sample_rate=0.0)
        client = ClientFactory()

        assert always_match.matches(client)
        assert not never_match.matches(client)
Beispiel #8
0
 def test_filter_by_country_none(self):
     recipe = RecipeFactory(countries=[])
     client = ClientFactory(country='US')
     assert recipe.matches(client)
Beispiel #9
0
 def test_filter_by_locale_none(self):
     recipe = RecipeFactory(locales=[])
     client = ClientFactory(locale='en-US')
     assert recipe.matches(client)
Beispiel #10
0
 def test_filter_by_channel_empty(self):
     recipe = RecipeFactory(release_channels=[])
     client = ClientFactory(release_channel='release')
     assert recipe.matches(client)
Beispiel #11
0
 def test_matches_deals_with_none(self):
     channel = ReleaseChannelFactory(slug='release')
     client = ClientFactory(release_channel=None)
     assert not channel.matches(client)
Beispiel #12
0
 def test_matches_works(self):
     channel = ReleaseChannelFactory(slug='release')
     client1 = ClientFactory(release_channel='release')
     client2 = ClientFactory(release_channel='beta')
     assert channel.matches(client1)
     assert not channel.matches(client2)
Beispiel #13
0
 def test_matches_deals_with_none(self):
     country = LocaleFactory(code='US')
     client = ClientFactory(country=None)
     assert not country.matches(client)
Beispiel #14
0
 def test_matches_deals_with_none(self):
     locale = LocaleFactory(code='en-US')
     client = ClientFactory(locale=None)
     assert not locale.matches(client)
Beispiel #15
0
 def test_matches_works(self):
     locale = LocaleFactory(code='en-US')
     client1 = ClientFactory(locale='en-US')
     client2 = ClientFactory(locale='de')
     assert locale.matches(client1)
     assert not locale.matches(client2)
Beispiel #16
0
    def test_filter_exclude(self):
        recipe = RecipeFactory(enabled=False)
        client = ClientFactory()

        assert not recipe.matches(client)
        assert recipe.matches(client, exclude=[match_enabled])