Beispiel #1
0
 def setUp(self):
     self.person1 = User.objects.get(username='******').person
     self.person2 = User.objects.get(username='******').person
     self.pose = PosesList.objects.get(id=1)
     self.place = PlacesList.objects.get(id=1)
     self.cmd = Command()
Beispiel #2
0
 def setUp(self):
     self.person1 = User.objects.get(username="******").person
     self.person2 = User.objects.get(username="******").person
     self.pose = PosesList.objects.get(id=1)
     self.place = PlacesList.objects.get(id=1)
     self.cmd = Command()
Beispiel #3
0
class CommandsTestCase(TestCase):
    fixtures = ['users_data.json', 'persons_data.json', 'notifications_data.json', 'hardcoded_data.json']

    def setUp(self):
        self.person1 = User.objects.get(username='******').person
        self.person2 = User.objects.get(username='******').person
        self.pose = PosesList.objects.get(id=1)
        self.place = PlacesList.objects.get(id=1)
        self.cmd = Command()

    def test_send_periodical_notification(self):
        self.person1.periodical_notification_period = 1
        self.person1.save(update_fields=['periodical_notification_period'])
        args = []
        opts = {}
        call_command('send_periodical_notification', *args, **opts)
        self.assertTrue(PeriodicalNotification.objects.get(person=self.person1, date_saved=date.today()))

    def test_send_tip_notification(self):
        self.person1.tip_notification_period = 1
        self.person1.save(update_fields=['tip_notification_period'])
        args = []
        opts = {}
        call_command('send_tip_notification', *args, **opts)
        self.assertTrue(TipNotification.objects.get(person=self.person1, date_saved=date.today()))

    def test_send_difference_notification(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=['difference_notification_period'])
        self.person1.relation = self.person2
        self.person1.save(update_fields=['relation'])
        args = []
        opts = {}
        call_command('send_difference_notification', *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual("Not enough data yet. You have to check in more often. ;)", DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message)

    def test_send_difference_notification_with_checkin(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=['difference_notification_period'])
        self.person1.relation = self.person2
        self.person1.save(update_fields=['relation'])
        CheckinDetails.objects.create(person=self.person1,
                                      date_checked=date(year=2013, month=7, day=3),
                                      address="Sofia, Bulgaria",
                                      rating=3,
                                      duration=30,
                                      with_who=self.person2,)
        args = []
        opts = {}
        call_command('send_difference_notification', *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual("If you want to get these, you have to specify poses and places when you checkin.", DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message)

    def test_send_difference_notification_with_checkin_with_poses_and_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=['difference_notification_period'])
        self.person1.relation = self.person2
        self.person1.save(update_fields=['relation'])
        checkin = CheckinDetails.objects.create(person=self.person1,
                                                date_checked=date(year=2013, month=7, day=3),
                                                address="Sofia, Bulgaria",
                                                rating=3,
                                                duration=30,
                                                with_who=self.person2,)
        checkin.poses.add(self.pose)
        checkin.places.add(self.place)
        checkin.save()
        args = []
        opts = {}
        call_command('send_difference_notification', *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual("Damn, you're selfish! You need to think more about what poses and places your partner likes.", DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message)

    def test_send_difference_notification_with_checkin_with_no_preferred_poses_and_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=['difference_notification_period'])
        self.person1.relation = self.person2
        self.person1.save(update_fields=['relation'])
        checkin = CheckinDetails.objects.create(person=self.person1,
                                                date_checked=date(year=2013, month=7, day=3),
                                                address="Sofia, Bulgaria",
                                                rating=3,
                                                duration=30,
                                                with_who=self.person2,)
        checkin.poses.add(self.pose)
        checkin.places.add(self.place)
        checkin.save()
        self.person2.preferred_poses.clear()
        args = []
        opts = {}
        call_command('send_difference_notification', *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual("Your partner hasn't specified all of his/her preferences yet.", DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message)

    def test_count_matching_items(self):
        preferred_poses = PosesList.objects.all()
        poses_counter = self.cmd.get_items_usage(preferred_poses)
        matching_poses = self.cmd.count_matching_items(preferred_items=preferred_poses, items_counter=poses_counter, half=2)
        self.assertEqual(2, matching_poses)

    def test_send_difference_notification_with_checkin_with_preferred_poses_and_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=['difference_notification_period'])
        self.person1.relation = self.person2
        self.person1.save(update_fields=['relation'])
        checkin = CheckinDetails.objects.create(person=self.person1,
                                                date_checked=date(year=2013, month=7, day=3),
                                                address="Sofia, Bulgaria",
                                                rating=3,
                                                duration=30,
                                                with_who=self.person2,)
        checkin.poses = self.person2.preferred_poses.get_query_set()
        checkin.places.add(self.place)
        checkin.save()
        args = []
        opts = {}
        call_command('send_difference_notification', *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual("You're doing good with the poses, but try to spice it up with some places your partner likes.", DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message)

    def test_send_difference_notification_with_checkin_with_poses_and_preferred_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=['difference_notification_period'])
        self.person1.relation = self.person2
        self.person1.save(update_fields=['relation'])
        checkin = CheckinDetails.objects.create(person=self.person1,
                                                date_checked=date(year=2013, month=7, day=3),
                                                address="Sofia, Bulgaria",
                                                rating=3,
                                                duration=30,
                                                with_who=self.person2,)
        checkin.poses.add(self.pose)
        checkin.places = self.person2.preferred_places.get_query_set()
        checkin.save()
        args = []
        opts = {}
        call_command('send_difference_notification', *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual("You're doing good with the places, but you need to think more about what poses your partner likes.", DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message)

    def test_send_difference_notification_with_checkin_with_preferred_poses_and_preferred_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=['difference_notification_period'])
        self.person1.relation = self.person2
        self.person1.save(update_fields=['relation'])
        checkin = CheckinDetails.objects.create(person=self.person1,
                                                date_checked=date(year=2013, month=7, day=3),
                                                address="Sofia, Bulgaria",
                                                rating=3,
                                                duration=30,
                                                with_who=self.person2,)
        checkin.poses = self.person2.preferred_poses.get_query_set()
        checkin.places = self.person2.preferred_places.get_query_set()
        checkin.save()
        args = []
        opts = {}
        call_command('send_difference_notification', *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual("Nice to see you care about what your partner likes. Keep up the good 'work'! ;)", DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message)

    def test_calculate_half_of_used_items(self):
        preferred_poses = ['leg_lock', 'missionary', 'advanced_sex', 'water_sex']
        poses_counter = self.cmd.get_items_usage(preferred_poses)
        half = self.cmd.calculate_half_of_used_items(poses_counter)
        self.assertEqual(2, half)
Beispiel #4
0
class CommandsTestCase(TestCase):
    fixtures = ["users_data.json", "persons_data.json", "notifications_data.json", "hardcoded_data.json"]

    def setUp(self):
        self.person1 = User.objects.get(username="******").person
        self.person2 = User.objects.get(username="******").person
        self.pose = PosesList.objects.get(id=1)
        self.place = PlacesList.objects.get(id=1)
        self.cmd = Command()

    def test_send_periodical_notification(self):
        self.person1.periodical_notification_period = 1
        self.person1.save(update_fields=["periodical_notification_period"])
        args = []
        opts = {}
        call_command("send_periodical_notification", *args, **opts)
        self.assertTrue(PeriodicalNotification.objects.get(person=self.person1, date_saved=date.today()))

    def test_send_tip_notification(self):
        self.person1.tip_notification_period = 1
        self.person1.save(update_fields=["tip_notification_period"])
        args = []
        opts = {}
        call_command("send_tip_notification", *args, **opts)
        self.assertTrue(TipNotification.objects.get(person=self.person1, date_saved=date.today()))

    def test_send_difference_notification(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=["difference_notification_period"])
        self.person1.relation = self.person2
        self.person1.save(update_fields=["relation"])
        args = []
        opts = {}
        call_command("send_difference_notification", *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual(
            "Not enough data yet. You have to check in more often. ;)",
            DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message,
        )

    def test_send_difference_notification_with_checkin(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=["difference_notification_period"])
        self.person1.relation = self.person2
        self.person1.save(update_fields=["relation"])
        CheckinDetails.objects.create(
            person=self.person1,
            date_checked=date(year=2013, month=7, day=3),
            address="Sofia, Bulgaria",
            rating=3,
            duration=30,
            with_who=self.person2,
        )
        args = []
        opts = {}
        call_command("send_difference_notification", *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual(
            "If you want to get these, you have to specify poses and places when you checkin.",
            DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message,
        )

    def test_send_difference_notification_with_checkin_with_poses_and_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=["difference_notification_period"])
        self.person1.relation = self.person2
        self.person1.save(update_fields=["relation"])
        checkin = CheckinDetails.objects.create(
            person=self.person1,
            date_checked=date(year=2013, month=7, day=3),
            address="Sofia, Bulgaria",
            rating=3,
            duration=30,
            with_who=self.person2,
        )
        checkin.poses.add(self.pose)
        checkin.places.add(self.place)
        checkin.save()
        args = []
        opts = {}
        call_command("send_difference_notification", *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual(
            "Damn, you're selfish! You need to think more about what poses and places your partner likes.",
            DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message,
        )

    def test_send_difference_notification_with_checkin_with_no_preferred_poses_and_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=["difference_notification_period"])
        self.person1.relation = self.person2
        self.person1.save(update_fields=["relation"])
        checkin = CheckinDetails.objects.create(
            person=self.person1,
            date_checked=date(year=2013, month=7, day=3),
            address="Sofia, Bulgaria",
            rating=3,
            duration=30,
            with_who=self.person2,
        )
        checkin.poses.add(self.pose)
        checkin.places.add(self.place)
        checkin.save()
        self.person2.preferred_poses.clear()
        args = []
        opts = {}
        call_command("send_difference_notification", *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual(
            "Your partner hasn't specified all of his/her preferences yet.",
            DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message,
        )

    def test_count_matching_items(self):
        preferred_poses = PosesList.objects.all()
        poses_counter = self.cmd.get_items_usage(preferred_poses)
        matching_poses = self.cmd.count_matching_items(
            preferred_items=preferred_poses, items_counter=poses_counter, half=2
        )
        self.assertEqual(2, matching_poses)

    def test_send_difference_notification_with_checkin_with_preferred_poses_and_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=["difference_notification_period"])
        self.person1.relation = self.person2
        self.person1.save(update_fields=["relation"])
        checkin = CheckinDetails.objects.create(
            person=self.person1,
            date_checked=date(year=2013, month=7, day=3),
            address="Sofia, Bulgaria",
            rating=3,
            duration=30,
            with_who=self.person2,
        )
        checkin.poses = self.person2.preferred_poses.get_query_set()
        checkin.places.add(self.place)
        checkin.save()
        args = []
        opts = {}
        call_command("send_difference_notification", *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual(
            "You're doing good with the poses, but try to spice it up with some places your partner likes.",
            DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message,
        )

    def test_send_difference_notification_with_checkin_with_poses_and_preferred_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=["difference_notification_period"])
        self.person1.relation = self.person2
        self.person1.save(update_fields=["relation"])
        checkin = CheckinDetails.objects.create(
            person=self.person1,
            date_checked=date(year=2013, month=7, day=3),
            address="Sofia, Bulgaria",
            rating=3,
            duration=30,
            with_who=self.person2,
        )
        checkin.poses.add(self.pose)
        checkin.places = self.person2.preferred_places.get_query_set()
        checkin.save()
        args = []
        opts = {}
        call_command("send_difference_notification", *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual(
            "You're doing good with the places, but you need to think more about what poses your partner likes.",
            DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message,
        )

    def test_send_difference_notification_with_checkin_with_preferred_poses_and_preferred_places(self):
        self.person1.difference_notification_period = 1
        self.person1.save(update_fields=["difference_notification_period"])
        self.person1.relation = self.person2
        self.person1.save(update_fields=["relation"])
        checkin = CheckinDetails.objects.create(
            person=self.person1,
            date_checked=date(year=2013, month=7, day=3),
            address="Sofia, Bulgaria",
            rating=3,
            duration=30,
            with_who=self.person2,
        )
        checkin.poses = self.person2.preferred_poses.get_query_set()
        checkin.places = self.person2.preferred_places.get_query_set()
        checkin.save()
        args = []
        opts = {}
        call_command("send_difference_notification", *args, **opts)
        self.assertTrue(DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()))
        self.assertEqual(
            "Nice to see you care about what your partner likes. Keep up the good 'work'! ;)",
            DifferenceNotification.objects.get(person=self.person1, date_saved=date.today()).message,
        )

    def test_calculate_half_of_used_items(self):
        preferred_poses = ["leg_lock", "missionary", "advanced_sex", "water_sex"]
        poses_counter = self.cmd.get_items_usage(preferred_poses)
        half = self.cmd.calculate_half_of_used_items(poses_counter)
        self.assertEqual(2, half)