• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python tests.AttendanceFactory类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中remo.events.tests.AttendanceFactory的典型用法代码示例。如果您正苦于以下问题:Python AttendanceFactory类的具体用法?Python AttendanceFactory怎么用?Python AttendanceFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了AttendanceFactory类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: test_email_event_attendees

    def test_email_event_attendees(self, mock_success):
        """Send email to selected event attendees."""
        user = UserFactory.create(groups=['Rep'])
        event = EventFactory.create(slug='test-event', owner=user)
        AttendanceFactory.create_batch(3, event=event)
        self.client.login(username=user.username, password='passwd')
        reps = event.attendees.all()
        valid_data = dict()
        for rep in reps:
            field_name = '%s' % rep.id
            valid_data[field_name] = 'True'

        valid_data['subject'] = 'This is the mail subject'
        valid_data['body'] = 'This is the mail subject'
        valid_data['slug'] = 'test-event'

        url = reverse('email_attendees', kwargs={'slug': event.slug})
        response = self.client.post(url, valid_data, follow=True)
        self.assertTemplateUsed(response, 'view_event.html')

        mock_success.assert_called_with(ANY, 'Email sent successfully.')
        eq_(len(mail.outbox), 4)

        for i in range(0, len(mail.outbox)):
            eq_(len(mail.outbox[i].cc), 1)
            eq_(len(mail.outbox[i].to), 1)
开发者ID:Mte90,项目名称:remo,代码行数:26,代码来源:test_views.py


示例2: test_attendance_list_sorting

    def test_attendance_list_sorting(self):
        """Test sorting of event attendance list."""
        e = EventFactory.create(start=START_DT, end=self.single_day_end)
        AttendanceFactory.create_batch(2, event=e)

        sorted_list = get_sorted_attendance_list(e)
        eq_(sorted_list[0], e.owner, 'Owner is not first.')

        copy_list = sorted_list[1:]
        sorted(copy_list, key=lambda x: '%s %s' % (x.last_name, x.first_name))

        eq_(copy_list, sorted_list[1:],
            'List is not properly sorted.')
开发者ID:Azeez09,项目名称:remo,代码行数:13,代码来源:test_helpers.py


示例3: test_unsubscribe_from_event_subscribed

 def test_unsubscribe_from_event_subscribed(self, mock_success):
     """Test unsubscribe from event subscribed user."""
     user = UserFactory.create(groups=['Rep'])
     event = EventFactory.create()
     AttendanceFactory.create(user=user, event=event)
     self.client.login(username=user.username, password='passwd')
     response = self.client.post(reverse('events_unsubscribe_from_event',
                                         kwargs={'slug': event.slug}),
                                 follow=True)
     self.assertTemplateUsed(response, 'view_event.html',
                             ('Rep user is not returned to '
                              'event page after unsubscribing.'))
     msg = 'You have unsubscribed from this event.'
     mock_success.assert_called_with(ANY, msg)
开发者ID:Mte90,项目名称:remo,代码行数:14,代码来源:test_views.py


示例4: test_subscription_management_subscribed

 def test_subscription_management_subscribed(self, mock_warning):
     """ Test subscribe already subscribed user."""
     user = UserFactory.create(groups=['Rep'])
     event = EventFactory.create()
     AttendanceFactory.create(user=user, event=event)
     self.client.login(username=user.username, password='passwd')
     response = self.client.post(reverse('events_subscribe_to_event',
                                         kwargs={'slug': event.slug}),
                                 follow=True)
     self.assertTemplateUsed(response, 'view_event.html',
                             ('Rep user is not returned to '
                              'event page after subscribing.'))
     msg = 'You are already subscribed to this event.'
     mock_warning.assert_called_with(ANY, msg)
开发者ID:Mte90,项目名称:remo,代码行数:14,代码来源:test_views.py


示例5: test_delete_passive_event_attendance_report

 def test_delete_passive_event_attendance_report(self):
     """Test delete passive report after attendance delete."""
     event = EventFactory.create()
     user = UserFactory.create(groups=['Rep', 'Mentor'],
                               userprofile__initial_council=True)
     attendance = AttendanceFactory.create(event=event, user=user)
     ok_(NGReport.objects.filter(event=event, user=user).exists())
     attendance.delete()
     ok_(not NGReport.objects.filter(event=event, user=user).exists())
开发者ID:josephbosire,项目名称:remo,代码行数:9,代码来源:test_models.py


示例6: test_create_passive_event_attendance_report

    def test_create_passive_event_attendance_report(self):
        """Test creating a passive report after attending an event."""
        event = EventFactory.create()
        user = UserFactory.create(groups=['Rep', 'Mentor'],
                                  userprofile__initial_council=True)
        AttendanceFactory.create(event=event, user=user)
        report = NGReport.objects.get(event=event, user=user)

        eq_(report.mentor, user.userprofile.mentor)
        eq_(report.activity.name, EVENT_ATTENDANCE_ACTIVITY)
        eq_(report.latitude, event.lat)
        eq_(report.longitude, event.lon)
        eq_(report.location, event.venue)
        eq_(report.is_passive, True)
        eq_(report.link, get_event_link(event))
        eq_(report.activity_description, event.description)
        self.assertQuerysetEqual(report.functional_areas.all(),
                                 [e.name for e in event.categories.all()],
                                 lambda x: x.name)
开发者ID:josephbosire,项目名称:remo,代码行数:19,代码来源:test_models.py


示例7: test_delete_attendance

 def test_delete_attendance(self):
     """Test delete passive report after attendance delete."""
     activity = Activity.objects.get(name=ACTIVITY_EVENT_ATTEND)
     event = EventFactory.create()
     user = UserFactory.create(groups=['Rep', 'Mentor'],
                               userprofile__initial_council=True)
     attendance = AttendanceFactory.create(event=event, user=user)
     ok_(NGReport.objects.filter(event=event, user=user).exists())
     attendance.delete()
     query = NGReport.objects.filter(event=event, user=user,
                                     activity=activity)
     ok_(not query.exists())
开发者ID:Josespaul,项目名称:remo,代码行数:12,代码来源:test_models.py



注:本文中的remo.events.tests.AttendanceFactory类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python tests.EventFactory类代码示例发布时间:2022-05-26
下一篇:
Python models.ActionItem类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap