summaryrefslogtreecommitdiffstats
path: root/client/go/cmd/query_test.go
blob: 137ffa01cd5b3dae2dee58b6698c4a2a07ab54be (plain) (blame)
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
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// query command tests
// Author: bratseth

package cmd

import (
	"strconv"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestQuery(t *testing.T) {
	assertQuery(t,
		"?yql=select+from+sources+%2A+where+title+contains+%27foo%27",
		"select from sources * where title contains 'foo'")
}

func TestQueryNonJsonResult(t *testing.T) {
	assertQuery(t,
		"?yql=select+from+sources+%2A+where+title+contains+%27foo%27",
		"select from sources * where title contains 'foo'")
}

func TestQueryWithMultipleParameters(t *testing.T) {
	assertQuery(t,
		"?hits=5&yql=select+from+sources+%2A+where+title+contains+%27foo%27",
		"select from sources * where title contains 'foo'", "hits=5")
}

func TestQueryWithExplicitYqlParameter(t *testing.T) {
	assertQuery(t,
		"?yql=select+from+sources+%2A+where+title+contains+%27foo%27",
		"yql=select from sources * where title contains 'foo'")
}

func TestIllegalQuery(t *testing.T) {
	assertQueryError(t, 401, "query error message")
}

func TestServerError(t *testing.T) {
	assertQueryServiceError(t, 501, "server error message")
}

func assertQuery(t *testing.T, expectedQuery string, query ...string) {
	client := &mockHttpClient{}
	queryURL := queryServiceURL(client)
	client.NextResponse(200, "{\"query\":\"result\"}")
	assert.Equal(t,
		"{\n    \"query\": \"result\"\n}\n",
		executeCommand(t, client, []string{"query"}, query),
		"query output")
	assert.Equal(t, queryURL+"/search/"+expectedQuery, client.lastRequest.URL.String())
}

func assertQueryError(t *testing.T, status int, errorMessage string) {
	client := &mockHttpClient{}
	client.NextResponse(status, errorMessage)
	assert.Equal(t,
		"Error: Invalid query: Status "+strconv.Itoa(status)+"\n"+errorMessage+"\n",
		executeCommand(t, client, []string{"query"}, []string{"yql=select from sources * where title contains 'foo'"}),
		"error output")
}

func assertQueryServiceError(t *testing.T, status int, errorMessage string) {
	client := &mockHttpClient{}
	client.NextResponse(status, errorMessage)
	assert.Equal(t,
		"Error: Status "+strconv.Itoa(status)+" from container at 127.0.0.1:8080\n"+errorMessage+"\n",
		executeCommand(t, client, []string{"query"}, []string{"yql=select from sources * where title contains 'foo'"}),
		"error output")
}

func queryServiceURL(client *mockHttpClient) string {
	return getService("query", 0).BaseURL
}