71 lines
1.6 KiB
HCL
71 lines
1.6 KiB
HCL
run "required_vars" {
|
|
command = plan
|
|
|
|
variables {
|
|
agent_id = "foo"
|
|
}
|
|
}
|
|
|
|
run "default_output" {
|
|
command = plan
|
|
|
|
variables {
|
|
agent_id = "foo"
|
|
}
|
|
|
|
assert {
|
|
condition = output.kiro_url == "kiro://coder.coder-remote/open?owner=default&workspace=default&url=https://mydeployment.coder.com&token=$SESSION_TOKEN"
|
|
error_message = "Default kiro_url must match expected value"
|
|
}
|
|
}
|
|
|
|
run "adds_folder" {
|
|
command = plan
|
|
|
|
variables {
|
|
agent_id = "foo"
|
|
folder = "/foo/bar"
|
|
}
|
|
|
|
assert {
|
|
condition = output.kiro_url == "kiro://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&url=https://mydeployment.coder.com&token=$SESSION_TOKEN"
|
|
error_message = "URL must include folder parameter"
|
|
}
|
|
}
|
|
|
|
run "folder_and_open_recent" {
|
|
command = plan
|
|
|
|
variables {
|
|
agent_id = "foo"
|
|
folder = "/foo/bar"
|
|
open_recent = true
|
|
}
|
|
|
|
assert {
|
|
condition = output.kiro_url == "kiro://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&openRecent&url=https://mydeployment.coder.com&token=$SESSION_TOKEN"
|
|
error_message = "URL must include folder and openRecent parameters"
|
|
}
|
|
}
|
|
|
|
run "writes_mcp_json" {
|
|
command = plan
|
|
|
|
variables {
|
|
agent_id = "foo"
|
|
mcp = jsonencode({
|
|
servers = {
|
|
demo = { url = "http://localhost:1234" }
|
|
}
|
|
})
|
|
}
|
|
|
|
assert {
|
|
condition = strcontains(coder_script.kiro_mcp[0].script, base64encode(jsonencode({
|
|
servers = {
|
|
demo = { url = "http://localhost:1234" }
|
|
}
|
|
})))
|
|
error_message = "coder_script must contain base64-encoded MCP JSON"
|
|
}
|
|
} |