2015-03-17 22:18:41 -04:00
|
|
|
package streamformatter
|
2014-06-02 06:41:47 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
2015-04-16 15:22:32 -04:00
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/jsonmessage"
|
2014-06-02 06:41:47 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestFormatStream(t *testing.T) {
|
2015-05-12 14:18:54 -04:00
|
|
|
sf := NewStreamFormatter()
|
|
|
|
res := sf.FormatStream("stream")
|
|
|
|
if string(res) != "stream"+"\r" {
|
|
|
|
t.Fatalf("%q", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFormatJSONStatus(t *testing.T) {
|
|
|
|
sf := NewStreamFormatter()
|
|
|
|
res := sf.FormatStatus("ID", "%s%d", "a", 1)
|
|
|
|
if string(res) != "a1\r\n" {
|
|
|
|
t.Fatalf("%q", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFormatSimpleError(t *testing.T) {
|
|
|
|
sf := NewStreamFormatter()
|
|
|
|
res := sf.FormatError(errors.New("Error for formatter"))
|
|
|
|
if string(res) != "Error: Error for formatter\r\n" {
|
|
|
|
t.Fatalf("%q", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJSONFormatStream(t *testing.T) {
|
|
|
|
sf := NewJSONStreamFormatter()
|
2014-06-02 06:41:47 -04:00
|
|
|
res := sf.FormatStream("stream")
|
|
|
|
if string(res) != `{"stream":"stream"}`+"\r\n" {
|
|
|
|
t.Fatalf("%q", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 14:18:54 -04:00
|
|
|
func TestJSONFormatStatus(t *testing.T) {
|
|
|
|
sf := NewJSONStreamFormatter()
|
2014-06-02 06:41:47 -04:00
|
|
|
res := sf.FormatStatus("ID", "%s%d", "a", 1)
|
|
|
|
if string(res) != `{"status":"a1","id":"ID"}`+"\r\n" {
|
|
|
|
t.Fatalf("%q", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 14:18:54 -04:00
|
|
|
func TestJSONFormatSimpleError(t *testing.T) {
|
|
|
|
sf := NewJSONStreamFormatter()
|
2014-06-02 06:41:47 -04:00
|
|
|
res := sf.FormatError(errors.New("Error for formatter"))
|
|
|
|
if string(res) != `{"errorDetail":{"message":"Error for formatter"},"error":"Error for formatter"}`+"\r\n" {
|
|
|
|
t.Fatalf("%q", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 14:18:54 -04:00
|
|
|
func TestJSONFormatJSONError(t *testing.T) {
|
|
|
|
sf := NewJSONStreamFormatter()
|
2015-03-17 22:18:41 -04:00
|
|
|
err := &jsonmessage.JSONError{Code: 50, Message: "Json error"}
|
2014-06-02 06:41:47 -04:00
|
|
|
res := sf.FormatError(err)
|
|
|
|
if string(res) != `{"errorDetail":{"code":50,"message":"Json error"},"error":"Json error"}`+"\r\n" {
|
|
|
|
t.Fatalf("%q", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 14:18:54 -04:00
|
|
|
func TestJSONFormatProgress(t *testing.T) {
|
|
|
|
sf := NewJSONStreamFormatter()
|
2015-03-17 22:18:41 -04:00
|
|
|
progress := &jsonmessage.JSONProgress{
|
2014-06-02 06:41:47 -04:00
|
|
|
Current: 15,
|
|
|
|
Total: 30,
|
|
|
|
Start: 1,
|
|
|
|
}
|
2015-12-21 18:02:44 -05:00
|
|
|
res := sf.FormatProgress("id", "action", progress, nil)
|
2015-03-17 22:18:41 -04:00
|
|
|
msg := &jsonmessage.JSONMessage{}
|
2014-06-02 06:41:47 -04:00
|
|
|
if err := json.Unmarshal(res, msg); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if msg.ID != "id" {
|
|
|
|
t.Fatalf("ID must be 'id', got: %s", msg.ID)
|
|
|
|
}
|
|
|
|
if msg.Status != "action" {
|
|
|
|
t.Fatalf("Status must be 'action', got: %s", msg.Status)
|
|
|
|
}
|
|
|
|
if msg.ProgressMessage != progress.String() {
|
|
|
|
t.Fatalf("ProgressMessage must be %s, got: %s", progress.String(), msg.ProgressMessage)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(msg.Progress, progress) {
|
|
|
|
t.Fatal("Original progress not equals progress from FormatProgress")
|
|
|
|
}
|
|
|
|
}
|