File: test_query_batching.py

package info (click to toggle)
strawberry-graphql 0.306.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 18,176 kB
  • sloc: javascript: 178,052; python: 65,643; sh: 33; makefile: 25
file content (206 lines) | stat: -rw-r--r-- 6,430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import pytest

import strawberry
from strawberry.schema.config import StrawberryConfig
from tests.conftest import skip_if_gql_32
from tests.http.clients.base import HttpClient
from tests.views.schema import Mutation, MyExtension, Query, Subscription


@pytest.fixture
def batching_http_client(http_client_class: type[HttpClient]) -> HttpClient:
    return http_client_class(
        schema=strawberry.Schema(
            query=Query,
            mutation=Mutation,
            subscription=Subscription,
            extensions=[MyExtension],
            config=StrawberryConfig(batching_config={"max_operations": 10}),
        )
    )


async def test_batching_works_with_multiple_queries(batching_http_client):
    response = await batching_http_client.post(
        url="/graphql",
        json=[
            {"query": "{ hello }"},
            {"query": "{ hello }"},
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 200
    assert response.json == [
        {"data": {"hello": "Hello world"}, "extensions": {"example": "example"}},
        {"data": {"hello": "Hello world"}, "extensions": {"example": "example"}},
    ]


async def test_batching_works_with_single_query(batching_http_client):
    response = await batching_http_client.post(
        url="/graphql",
        json=[
            {"query": "{ hello }"},
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 200
    assert response.json == [
        {"data": {"hello": "Hello world"}, "extensions": {"example": "example"}},
    ]


async def test_variables_can_be_supplied_per_query(batching_http_client):
    response = await batching_http_client.post(
        url="/graphql",
        json=[
            {
                "query": "query InjectedVariables($name: String!) { hello(name: $name) }",
                "variables": {"name": "Alice"},
            },
            {
                "query": "query InjectedVariables($name: String!) { hello(name: $name) }",
                "variables": {"name": "Bob"},
            },
            {"query": "query NoVariables{ hello }"},
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 200
    assert response.json == [
        {"data": {"hello": "Hello Alice"}, "extensions": {"example": "example"}},
        {"data": {"hello": "Hello Bob"}, "extensions": {"example": "example"}},
        {"data": {"hello": "Hello world"}, "extensions": {"example": "example"}},
    ]


async def test_operations_can_be_selected_per_query(batching_http_client):
    response = await batching_http_client.post(
        url="/graphql",
        json=[
            {
                "query": 'query Op1 { hello(name: "Op1") } query Op2 { hello(name: "Op2") }',
                "operationName": "Op1",
            },
            {
                "query": 'query Op1 { hello(name: "Op1") } query Op2 { hello(name: "Op2") }',
                "operationName": "Op2",
            },
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 200
    assert response.json == [
        {"data": {"hello": "Hello Op1"}, "extensions": {"example": "example"}},
        {"data": {"hello": "Hello Op2"}, "extensions": {"example": "example"}},
    ]


@skip_if_gql_32("formatting is different in gql 3.2")
async def test_extensions_are_handled_per_query(batching_http_client):
    response = await batching_http_client.post(
        url="/graphql",
        json=[
            {
                "query": 'query { valueFromExtensions(key: "test") }',
                "extensions": {"test": "op1-value"},
            },
            {
                "query": 'query { valueFromExtensions(key: "test") }',
                "extensions": {"test": "op2-value"},
            },
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 200
    assert response.json == [
        {
            "data": {"valueFromExtensions": "op1-value"},
            "extensions": {"example": "example"},
        },
        {
            "data": {"valueFromExtensions": "op2-value"},
            "extensions": {"example": "example"},
        },
    ]


async def test_context_is_shared_between_operations(batching_http_client):
    response = await batching_http_client.post(
        url="/graphql",
        json=[
            {"query": 'mutation { updateContext(key: "test", value: "shared-value") }'},
            {"query": 'query { valueFromContext(key: "test") }'},
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 200
    assert response.json == [
        {
            "data": {"updateContext": True},
            "extensions": {"example": "example"},
        },
        {
            "data": {"valueFromContext": "shared-value"},
            "extensions": {"example": "example"},
        },
    ]


async def test_returns_error_when_batching_is_disabled(
    http_client_class: type[HttpClient],
):
    http_client = http_client_class(
        schema=strawberry.Schema(
            query=Query,
            mutation=Mutation,
            subscription=Subscription,
            extensions=[MyExtension],
            config=StrawberryConfig(batching_config=None),
        )
    )

    response = await http_client.post(
        url="/graphql",
        json=[
            {"query": "{ hello }"},
            {"query": "{ hello }"},
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 400
    assert "Batching is not enabled" in response.text


async def test_returns_error_when_trying_too_many_operations(
    http_client_class: type[HttpClient],
):
    http_client = http_client_class(
        schema=strawberry.Schema(
            query=Query,
            mutation=Mutation,
            subscription=Subscription,
            extensions=[MyExtension],
            config=StrawberryConfig(batching_config={"max_operations": 2}),
        )
    )

    response = await http_client.post(
        url="/graphql",
        json=[
            {"query": "{ hello }"},
            {"query": "{ hello }"},
            {"query": "{ hello }"},
        ],
        headers={"content-type": "application/json"},
    )

    assert response.status_code == 400
    assert "Too many operations" in response.text