test_name: "Test major decode endpoint" includes: - !include includes.yaml stages: - name: "Successful decode with valid encoded input" request: url: "http://{server_address}/{api_base}/major/decode/pl/hello" method: GET headers: X-API-Key: "{api_key}" response: strict: False status_code: 200 json: input: "hello" result: !anystr - name: "Missing authentication returns 401 error" request: url: "http://{server_address}/{api_base}/major/decode/pl/hello" method: GET response: strict: False status_code: 401 json: error: !anystr