-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain_test.go
159 lines (134 loc) Β· 5.02 KB
/
main_test.go
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
package main
import (
"bufio"
"encoding/json"
"os/exec"
"path/filepath"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestIntegration(t *testing.T) {
// Build the emcee binary for testing
tmpDir := t.TempDir()
binaryPath := filepath.Join(tmpDir, "emcee")
buildCmd := exec.Command("go", "build", "-o", binaryPath, "cmd/emcee/main.go")
require.NoError(t, buildCmd.Run(), "Failed to build emcee binary")
// Start emcee with the embedded test OpenAPI spec
specPath := "testdata/api.weather.gov/openapi.json"
cmd := exec.Command(binaryPath, specPath)
stdin, err := cmd.StdinPipe()
require.NoError(t, err)
stdout, err := cmd.StdoutPipe()
require.NoError(t, err)
err = cmd.Start()
require.NoError(t, err)
// Ensure cleanup
defer func() {
stdin.Close()
cmd.Process.Kill()
cmd.Wait()
}()
// Give the process a moment to initialize
time.Sleep(100 * time.Millisecond)
// Prepare and send JSON-RPC request
request := map[string]interface{}{
"jsonrpc": "2.0",
"method": "tools/list",
"params": map[string]interface{}{},
"id": 1,
}
requestJSON, err := json.Marshal(request)
require.NoError(t, err)
requestJSON = append(requestJSON, '\n')
_, err = stdin.Write(requestJSON)
require.NoError(t, err)
// Read response using a scanner
scanner := bufio.NewScanner(stdout)
require.True(t, scanner.Scan(), "Expected to read a response line")
var response struct {
JSONRPC string `json:"jsonrpc"`
Result struct {
Tools []struct {
Name string `json:"name"`
Description string `json:"description"`
InputSchema json.RawMessage `json:"inputSchema"`
} `json:"tools"`
} `json:"result"`
ID int `json:"id"`
}
err = json.Unmarshal(scanner.Bytes(), &response)
require.NoError(t, err, "Failed to parse JSON response")
// Verify response
assert.Equal(t, "2.0", response.JSONRPC)
assert.Equal(t, 1, response.ID)
assert.NotEmpty(t, response.Result.Tools, "Expected at least one tool in response")
// Find and verify the point tool
var pointTool struct {
Name string
Description string
InputSchema struct {
Type string `json:"type"`
Properties map[string]interface{} `json:"properties"`
Required []string `json:"required"`
}
}
foundPointTool := false
for _, tool := range response.Result.Tools {
if tool.Name == "point" {
foundPointTool = true
err := json.Unmarshal(tool.InputSchema, &pointTool.InputSchema)
require.NoError(t, err)
pointTool.Name = tool.Name
pointTool.Description = tool.Description
break
}
}
require.True(t, foundPointTool, "Expected to find point tool")
assert.Equal(t, "point", pointTool.Name)
assert.Contains(t, pointTool.Description, "Returns metadata about a given latitude/longitude point")
// Verify point tool has proper parameter schema
assert.Equal(t, "object", pointTool.InputSchema.Type)
assert.Contains(t, pointTool.InputSchema.Properties, "point", "Point tool should have 'point' parameter")
pointParam := pointTool.InputSchema.Properties["point"].(map[string]interface{})
assert.Equal(t, "string", pointParam["type"])
assert.Contains(t, pointParam["description"].(string), "Point (latitude, longitude)")
assert.Contains(t, pointTool.InputSchema.Required, "point", "Point parameter should be required")
var zoneTool struct {
Name string
Description string
InputSchema struct {
Type string `json:"type"`
Properties map[string]interface{} `json:"properties"`
Required []string `json:"required"`
}
}
foundZoneTool := false
for _, tool := range response.Result.Tools {
if tool.Name == "zone" {
foundZoneTool = true
err := json.Unmarshal(tool.InputSchema, &zoneTool.InputSchema)
require.NoError(t, err)
zoneTool.Name = tool.Name
zoneTool.Description = tool.Description
break
}
}
require.True(t, foundZoneTool, "Expected to find zone tool")
assert.Equal(t, "zone", zoneTool.Name)
assert.Contains(t, zoneTool.Description, "Returns metadata about a given zone")
// Verify zone tool has proper parameter schema
assert.Equal(t, "object", zoneTool.InputSchema.Type)
assert.Contains(t, zoneTool.InputSchema.Properties, "zoneId", "Zone tool should have 'zoneId' parameter")
typeParam := zoneTool.InputSchema.Properties["type"].(map[string]interface{})
assert.Equal(t, "string", typeParam["type"])
assert.Contains(t, typeParam["description"].(string), "Zone type")
assert.Contains(t, typeParam["description"].(string), "Allowed values: land, marine, ")
assert.Contains(t, zoneTool.InputSchema.Required, "type", "type parameter should be required")
zoneIdParam := zoneTool.InputSchema.Properties["zoneId"].(map[string]interface{})
assert.Equal(t, "string", zoneIdParam["type"])
assert.Contains(t, zoneIdParam["description"].(string), "NWS public zone/county identifier")
assert.Contains(t, zoneIdParam["description"].(string), "UGC identifier for a NWS")
assert.Contains(t, zoneTool.InputSchema.Required, "zoneId", "zoneId parameter should be required")
}