Ejemplo n.º 1
0
    def test_link_exists_datapoint_exists(self):
        """
        If a datapoint exists for the given date, increment it's
        link_clicks value.
        """
        link = LinkFactory.create()
        datapoint = DataPointFactory.create(link=link,
                                            date=date(2014, 1, 1),
                                            link_clicks=7)

        add_click(link.id, date(2014, 1, 1))
        datapoint = DataPoint.objects.get(pk=datapoint.pk)
        eq_(datapoint.link_clicks, 8)
Ejemplo n.º 2
0
    def test_link_exists_datapoint_exists(self):
        """
        If a datapoint exists for the given date, increment it's
        link_clicks value.
        """
        link = LinkFactory.create()
        datapoint = DataPointFactory.create(link=link, date=date(2014, 1, 1), link_clicks=7)
        call_command('denormalize_metrics')  # Ensure denormalized data.

        add_click(link.id, date(2014, 1, 1))

        datapoint = DataPoint.objects.get(pk=datapoint.pk)
        eq_(datapoint.link_clicks, 8)

        link = datapoint.link
        eq_(link.link_clicks, 8)

        banner = link.banner
        eq_(banner.link_clicks, 8)

        category = banner.category
        eq_(category.link_clicks, 8)
Ejemplo n.º 3
0
 def test_link_exists_no_datapoint(self):
     """If not datapoint for the given date exists, create one."""
     link = LinkFactory.create()
     add_click(link.id, date(2014, 4, 1))
     datapoint = link.datapoint_set.get(date=date(2014, 4, 1))
     eq_(datapoint.link_clicks, 1)
Ejemplo n.º 4
0
 def test_link_does_not_exist(self):
     """If the link does not exist, do nothing (but don't fail!)."""
     eq_(add_click(99999999, date(2014, 4, 1)), None)
Ejemplo n.º 5
0
 def test_link_exists_no_datapoint(self):
     """If not datapoint for the given date exists, create one."""
     link = LinkFactory.create()
     add_click(link.id, date(2014, 4, 1))
     datapoint = link.datapoint_set.get(date=date(2014, 4, 1))
     eq_(datapoint.link_clicks, 1)
Ejemplo n.º 6
0
 def test_link_does_not_exist(self):
     """If the link does not exist, do nothing (but don't fail!)."""
     eq_(add_click(99999999, date(2014, 4, 1)), None)