aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/src/cmd/document_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/src/cmd/document_test.go')
-rw-r--r--client/go/src/cmd/document_test.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/client/go/src/cmd/document_test.go b/client/go/src/cmd/document_test.go
deleted file mode 100644
index 7e9af0ab921..00000000000
--- a/client/go/src/cmd/document_test.go
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-// document command tests
-// Author: bratseth
-
-package cmd
-
-import (
- "github.com/stretchr/testify/assert"
- "github.com/vespa-engine/vespa/utils"
- "io/ioutil"
- "testing"
-)
-
-func TestDocumentPut(t *testing.T) {
- assertDocumentPut("mynamespace/music/docid/1", "testdata/A-Head-Full-of-Dreams.json", t)
-}
-
-func assertDocumentPut(documentId string, jsonFile string, t *testing.T) {
- client := &mockHttpClient{}
- assert.Equal(t,
- "\x1b[32mSuccess\n",
- executeCommand(t, client, []string{"document", documentId, jsonFile}, []string{}))
- target := getTarget(documentContext).document
- assert.Equal(t, target + "/document/v1/" + documentId, client.lastRequest.URL.String())
- assert.Equal(t, "application/json", client.lastRequest.Header.Get("Content-Type"))
- assert.Equal(t, "POST", client.lastRequest.Method)
-
- fileContent, _ := ioutil.ReadFile(jsonFile)
- assert.Equal(t, string(fileContent), utils.ReaderToString(client.lastRequest.Body))
-}