コード例 #1
0
    def test_viewsets_organizations_search_with_invalid_params(self, _):
        """
        Error case: the client used an incorrectly formatted request
        """
        factory = APIRequestFactory()
        # The request contains incorrect params: limit should be a positive integer
        request = factory.get("/api/v1.0/organizations?title=&limit=-2")

        response = OrganizationsViewSet.as_view({"get": "list"})(request,
                                                                 version="1.0")

        # The client received a BadRequest response with the relevant data
        self.assertEqual(response.status_code, 400)
        self.assertTrue("limit" in response.data["errors"])
コード例 #2
0
    def test_viewsets_organizations_retrieve_unknown(self):
        """
        Error case: the client is asking for an organization that does not exist
        """
        factory = APIRequestFactory()
        request = factory.get("/api/v1.0/organizations/43")

        # Act like the ES client would when we attempt to get a non-existent document
        with mock.patch.object(ES_CLIENT, "get", side_effect=NotFoundError):
            response = OrganizationsViewSet.as_view({"get": "retrieve"
                                                     })(request,
                                                        43,
                                                        version="1.0")

        # The client received a standard NotFound response
        self.assertEqual(response.status_code, 404)
コード例 #3
0
    def test_retrieve_organization(self):
        """
        Happy path: the client requests an existing organization, gets it back
        """
        factory = APIRequestFactory()
        request = factory.get("/api/v1.0/organizations/42")

        with mock.patch.object(
                settings.ES_CLIENT,
                "get",
                return_value={
                    "_id": 42,
                    "_source": {
                        "banner": "example.com/banner.png",
                        "code": "univ-paris-42",
                        "logo": "example.com/logo.png",
                        "name": {
                            "fr": "Université Paris 42"
                        },
                    },
                },
        ):
            # Note: we need to use a separate argument for the ID as that is what the ViewSet uses
            response = OrganizationsViewSet.as_view({"get": "retrieve"
                                                     })(request,
                                                        42,
                                                        version="1.0")

        # The client received a proper response with the relevant organization
        self.assertEqual(response.status_code, 200)
        self.assertEqual(
            response.data,
            {
                "banner": "example.com/banner.png",
                "code": "univ-paris-42",
                "id": 42,
                "logo": "example.com/logo.png",
                "name": "Université Paris 42",
            },
        )
コード例 #4
0
    def test_viewsets_organizations_search(self, mock_search):
        """
        Happy path: the consumer is filtering the organizations by title
        """
        factory = APIRequestFactory()
        request = factory.get(
            "/api/v1.0/organizations?query=Université&limit=2")

        mock_search.return_value = {
            "hits": {
                "hits": [
                    {
                        "_id": 21,
                        "_source": {
                            "logo": {
                                "fr": "/logo_21.png"
                            },
                            "title": {
                                "fr": "Université Paris 13"
                            },
                        },
                    },
                    {
                        "_id": 61,
                        "_source": {
                            "logo": {
                                "fr": "/logo_61.png"
                            },
                            "title": {
                                "fr": "Université Paris 8"
                            },
                        },
                    },
                ],
                "total":
                32,
            }
        }

        response = OrganizationsViewSet.as_view({"get": "list"})(request,
                                                                 version="1.0")

        # The client received a properly formatted response
        self.assertEqual(response.status_code, 200)
        self.assertEqual(
            response.data,
            {
                "meta": {
                    "count": 2,
                    "offset": 0,
                    "total_count": 32
                },
                "objects": [
                    {
                        "id": 21,
                        "logo": "/logo_21.png",
                        "title": "Université Paris 13"
                    },
                    {
                        "id": 61,
                        "logo": "/logo_61.png",
                        "title": "Université Paris 8"
                    },
                ],
            },
        )
        # The ES connector was called with a query that matches the client's request
        mock_search.assert_called_with(
            _source=["absolute_url", "logo", "title.*"],
            body={"query": "something"},
            doc_type="organization",
            from_=0,
            index="richie_organizations",
            size=2,
        )