Exemplo n.º 1
0
    def test_get_draft_not_returns_hidden_apps(self):
        """Test CACHE PROJECTS get_draft does not return hidden projects"""

        AppFactory.create(info={}, hidden=1)

        drafts = cached_apps.get_draft()

        assert len(drafts) is 0, drafts
Exemplo n.º 2
0
    def test_get_draft(self):
        """Test CACHE PROJECTS get_draft returns draft_projects"""
        # Here, we are suposing that a project is draft iff has no presenter AND has no tasks

        AppFactory.create(info={})

        drafts = cached_apps.get_draft()

        assert len(drafts) is 1, drafts
Exemplo n.º 3
0
    def test_get_draft_not_returns_published_apps(self):
        """Test CACHE PROJECTS get_draft does not return projects with either tasks or a presenter (REVIEW DEFINITION OF A DRAFT PROJECT REQUIRED)"""

        app_no_presenter = AppFactory.create(info={})
        TaskFactory.create(app=app_no_presenter)
        app_no_task = AppFactory.create()

        drafts = cached_apps.get_draft()

        assert len(drafts) is 0, drafts
Exemplo n.º 4
0
    def test_get_draft_returns_required_fields(self):
        """Test CACHE PROJECTS get_draft returns the required info
        about each project"""

        fields = ('id', 'name', 'short_name', 'info', 'created', 'description',
                  'last_activity', 'last_activity_raw', 'overall_progress',
                   'n_tasks', 'n_volunteers', 'owner', 'info')

        AppFactory.create(info={})

        draft = cached_apps.get_draft()[0]

        for field in fields:
            assert draft.has_key(field), "%s not in app info" % field
Exemplo n.º 5
0
def draft(page):
    if require.app.read():
        per_page = 5

        apps, count = cached_apps.get_draft(page, per_page)

        pagination = Pagination(page, per_page, count)
        return render_template('/applications/draft.html',
                                title="Applications",
                                apps=apps,
                                count=count,
                                pagination=pagination)
    else:
        abort(403)