File size: 1,254 Bytes
6a7089a | 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 | package actions
import (
"strings"
"testing"
"github.com/spf13/cobra"
)
func newTextCmd() *cobra.Command {
cmd := &cobra.Command{}
cmd.Flags().Bool("raw", false, "")
cmd.Flags().String("tab", "", "")
return cmd
}
func TestText(t *testing.T) {
m := newMockServer()
m.response = `{"url":"https://pinchtab.com","title":"Example","text":"Hello"}`
defer m.close()
client := m.server.Client()
cmd := newTextCmd()
Text(client, m.base(), "", cmd)
if m.lastPath != "/text" {
t.Errorf("expected /text, got %s", m.lastPath)
}
}
func TestTextRaw(t *testing.T) {
m := newMockServer()
defer m.close()
client := m.server.Client()
cmd := newTextCmd()
_ = cmd.Flags().Set("raw", "true")
Text(client, m.base(), "", cmd)
if !strings.Contains(m.lastQuery, "mode=raw") {
t.Errorf("expected mode=raw, got %s", m.lastQuery)
}
if !strings.Contains(m.lastQuery, "format=text") {
t.Errorf("expected format=text, got %s", m.lastQuery)
}
}
func TestTextTab(t *testing.T) {
m := newMockServer()
defer m.close()
client := m.server.Client()
cmd := newTextCmd()
_ = cmd.Flags().Set("tab", "TAB1")
Text(client, m.base(), "", cmd)
if !strings.Contains(m.lastQuery, "tabId=TAB1") {
t.Errorf("expected tabId=TAB1, got %s", m.lastQuery)
}
}
|