예제 #1
0
파일: test_plugins.py 프로젝트: alanoe/pulp
    def test_get_distributor_resource_with_nonexistent_distributor(self, mock_factory):
        """
        Distributor Resource should raise a MissingResource if distributor does not exist.
        """
        mock_manager = mock.MagicMock()
        mock_manager.distributors.return_value = [{'id': 'mock_distriburor_1'},
                                                  {'id': 'mock_distributor_2'}]
        mock_factory.plugin_manager.return_value = mock_manager
        request = mock.MagicMock()

        distributor_resource = DistributorResourceView()
        try:
            distributor_resource.get(request, 'nonexistent_distributor')
        except MissingResource, response:
            pass
예제 #2
0
파일: test_plugins.py 프로젝트: alanoe/pulp
    def test_get_distributor_resource_with_existing_distributor(self, mock_factory, mock_serial):
        """
        Distributor Resource should generate a json response from the distributor data.
        """
        mock_manager = mock.MagicMock()
        mock_manager.distributors.return_value = [{'id': 'mock_distributor_1'},
                                                  {'id': 'mock_distributor_2'}]
        mock_factory.plugin_manager.return_value = mock_manager
        request = mock.MagicMock()
        request.get_full_path.return_value = '/mock/path/'

        distributor_resource = DistributorResourceView()
        response = distributor_resource.get(request, 'mock_distributor_2')

        expected_content = {'id': 'mock_distributor_2', '_href': '/mock/path/'}
        mock_serial.assert_called_once_with(expected_content)
        self.assertTrue(response is mock_serial.return_value)
예제 #3
0
    def test_get_distributor_resource_with_nonexistent_distributor(
            self, mock_factory):
        """
        Distributor Resource should raise a MissingResource if distributor does not exist.
        """
        mock_manager = mock.MagicMock()
        mock_manager.distributors.return_value = [{
            'id': 'mock_distriburor_1'
        }, {
            'id': 'mock_distributor_2'
        }]
        mock_factory.plugin_manager.return_value = mock_manager
        request = mock.MagicMock()

        distributor_resource = DistributorResourceView()
        try:
            distributor_resource.get(request, 'nonexistent_distributor')
        except MissingResource, response:
            pass
예제 #4
0
    def test_get_distributor_resource_with_existing_distributor(
            self, mock_factory, mock_serial):
        """
        Distributor Resource should generate a json response from the distributor data.
        """
        mock_manager = mock.MagicMock()
        mock_manager.distributors.return_value = [{
            'id': 'mock_distributor_1'
        }, {
            'id': 'mock_distributor_2'
        }]
        mock_factory.plugin_manager.return_value = mock_manager
        request = mock.MagicMock()
        request.get_full_path.return_value = '/mock/path/'

        distributor_resource = DistributorResourceView()
        response = distributor_resource.get(request, 'mock_distributor_2')

        expected_content = {'id': 'mock_distributor_2', '_href': '/mock/path/'}
        mock_serial.assert_called_once_with(expected_content)
        self.assertTrue(response is mock_serial.return_value)
예제 #5
0
파일: urls.py 프로젝트: beav/pulp
        name='content_units_collection'),
    url(r'^v2/content/units/(?P<type_id>[^/]+)/(?P<unit_id>[^/]+)/$',
        ContentUnitResourceView.as_view(),
        name='content_unit_resource'),
    url(r'^v2/content/units/(?P<type_id>[^/]+)/(?P<unit_id>[^/]+)/pulp_user_metadata/$',
        ContentUnitUserMetadataResourceView.as_view(),
        name='content_unit_user_metadata_resource'),
    url(r'^v2/content/uploads/(?P<upload_id>[^/]+)/$',
        UploadResourceView.as_view(),
        name='content_upload_resource'),
    url(r'^v2/content/uploads/(?P<upload_id>[^/]+)/(?P<offset>[^/]+)/$',
        UploadSegmentResourceView.as_view(),
        name='content_upload_segment_resource'),
    url(r'^v2/plugins/distributors/$',
        DistributorsView.as_view(),
        name='plugin_distributors'),
    url(r'^v2/plugins/distributors/(?P<distributor_id>[^/]+)/$',
        DistributorResourceView.as_view(),
        name='plugin_distributor_resource'),
    url(r'^v2/plugins/importers/$',
        ImportersView.as_view(),
        name='plugin_importers'),
    url(r'^v2/plugins/importers/(?P<importer_id>[^/]+)/$',
        ImporterResourceView.as_view(),
        name='plugin_importer_resource'),
    url(r'^v2/plugins/types/$', TypesView.as_view(), name='plugin_types'),
    url(r'^v2/plugins/types/(?P<type_id>[^/]+)/$',
        TypeResourceView.as_view(),
        name='plugin_type_resource'),
)
예제 #6
0
파일: urls.py 프로젝트: hgschmie/pulp
 url(r'^v2/content/units/(?P<type_id>[^/]+)/(?P<unit_id>[^/]+)/pulp_user_metadata/$',
     ContentUnitUserMetadataResourceView.as_view(), name='content_unit_user_metadata_resource'),
 url(r'^v2/content/uploads/$', UploadsCollectionView.as_view(), name='content_uploads'),
 url(r'^v2/content/uploads/(?P<upload_id>[^/]+)/$', UploadResourceView.as_view(),
     name='content_upload_resource'),
 url(r'^v2/content/uploads/(?P<upload_id>[^/]+)/(?P<offset>[^/]+)/$',
     UploadSegmentResourceView.as_view(), name='content_upload_segment_resource'),
 url(r'^v2/events/$', EventView.as_view(), name='events'),
 url(r'^v2/events/(?P<event_listener_id>[^/]+)/$', EventResourceView.as_view(), name='event_resource'),
 url(r'^v2/permissions/$', PermissionView.as_view(), name='permissions'),
 url(r'^v2/permissions/actions/grant_to_role/$', GrantToRoleView.as_view(), name='grant_to_role'),
 url(r'^v2/permissions/actions/grant_to_user/$', GrantToUserView.as_view(), name='grant_to_user'),
 url(r'^v2/permissions/actions/revoke_from_role/$', RevokeFromRoleView.as_view(), name='revoke_from_role'),
 url(r'^v2/permissions/actions/revoke_from_user/$', RevokeFromUserView.as_view(), name='revoke_from_user'),
 url(r'^v2/plugins/distributors/$', DistributorsView.as_view(), name='plugin_distributors'),
 url(r'^v2/plugins/distributors/(?P<distributor_id>[^/]+)/$', DistributorResourceView.as_view(),
     name='plugin_distributor_resource'),
 url(r'^v2/plugins/importers/$', ImportersView.as_view(), name='plugin_importers'),
 url(r'^v2/plugins/importers/(?P<importer_id>[^/]+)/$', ImporterResourceView.as_view(),
     name='plugin_importer_resource'),
 url(r'^v2/plugins/types/$', TypesView.as_view(), name='plugin_types'),
 url(r'^v2/plugins/types/(?P<type_id>[^/]+)/$', TypeResourceView.as_view(),
     name='plugin_type_resource'),
 url(r'^v2/repo_groups/$', RepoGroupsView.as_view(), name='repo_groups'),
 url(r'^v2/repo_groups/(?P<repo_group_id>[^/]+)/$', RepoGroupResourceView.as_view(),
     name='repo_group_resource'),
 url(r'^v2/repo_groups/(?P<repo_group_id>[^/]+)/actions/associate/$',
     RepoGroupAssociateView.as_view(), name='repo_group_associate'),
 url(r'^v2/repo_groups/(?P<repo_group_id>[^/]+)/actions/publish/$',
     RepoGroupPublishView.as_view(), name='repo_group_publish'),
 url(r'^v2/repo_groups/(?P<repo_group_id>[^/]+)/actions/unassociate/$',
예제 #7
0
 url(r'^v2/content/uploads/$', UploadsCollectionView.as_view(), name='content_uploads'),
 url(r'^v2/content/uploads/(?P<upload_id>[^/]+)/$', UploadResourceView.as_view(),
     name='content_upload_resource'),
 url(r'^v2/content/uploads/(?P<upload_id>[^/]+)/(?P<offset>[^/]+)/$',
     UploadSegmentResourceView.as_view(), name='content_upload_segment_resource'),
 url(r'^v2/distributors/search/$', RepoDistributorsSearchView.as_view(),
     name='distributor_search'),
 url(r'^v2/events/$', EventView.as_view(), name='events'),
 url(r'^v2/events/(?P<event_listener_id>[^/]+)/$', EventResourceView.as_view(), name='event_resource'),
 url(r'^v2/permissions/$', PermissionView.as_view(), name='permissions'),
 url(r'^v2/permissions/actions/grant_to_role/$', GrantToRoleView.as_view(), name='grant_to_role'),
 url(r'^v2/permissions/actions/grant_to_user/$', GrantToUserView.as_view(), name='grant_to_user'),
 url(r'^v2/permissions/actions/revoke_from_role/$', RevokeFromRoleView.as_view(), name='revoke_from_role'),
 url(r'^v2/permissions/actions/revoke_from_user/$', RevokeFromUserView.as_view(), name='revoke_from_user'),
 url(r'^v2/plugins/distributors/$', DistributorsView.as_view(), name='plugin_distributors'),
 url(r'^v2/plugins/distributors/(?P<distributor_id>[^/]+)/$', DistributorResourceView.as_view(),
     name='plugin_distributor_resource'),
 url(r'^v2/plugins/importers/$', ImportersView.as_view(), name='plugin_importers'),
 url(r'^v2/plugins/importers/(?P<importer_id>[^/]+)/$', ImporterResourceView.as_view(),
     name='plugin_importer_resource'),
 url(r'^v2/plugins/types/$', TypesView.as_view(), name='plugin_types'),
 url(r'^v2/plugins/types/(?P<type_id>[^/]+)/$', TypeResourceView.as_view(),
     name='plugin_type_resource'),
 url(r'^v2/repo_groups/$', RepoGroupsView.as_view(), name='repo_groups'),
 url(r'^v2/repo_groups/search/$', RepoGroupSearch.as_view(), name='repo_group_search'),
 url(r'^v2/repo_groups/(?P<repo_group_id>[^/]+)/$', RepoGroupResourceView.as_view(),
     name='repo_group_resource'),
 url(r'^v2/repo_groups/(?P<repo_group_id>[^/]+)/actions/associate/$',
     RepoGroupAssociateView.as_view(), name='repo_group_associate'),
 url(r'^v2/repo_groups/(?P<repo_group_id>[^/]+)/actions/publish/$',
     RepoGroupPublishView.as_view(), name='repo_group_publish'),