oh-my-posh/color_writer_test.go
2020-09-12 08:57:18 +02:00

47 lines
1.4 KiB
Go
Executable file

package main
import (
"bytes"
"testing"
"github.com/stretchr/testify/assert"
)
func TestWriteAndRemoveText(t *testing.T) {
writer := &ColorWriter{
Buffer: new(bytes.Buffer),
}
inputText := "This is white, <#ff5733>this is orange</>, white again"
text := writer.writeAndRemoveText("#193549", "#fff", "This is white, ", "This is white, ", inputText)
assert.Equal(t, "This is white, ", writer.string())
assert.Equal(t, "<#ff5733>this is orange</>, white again", text)
}
func TestWriteAndRemoveTextColored(t *testing.T) {
writer := &ColorWriter{
Buffer: new(bytes.Buffer),
}
inputText := "This is white, <#ff5733>this is orange</>, white again"
text := writer.writeAndRemoveText("#193549", "#ff5733", "this is orange", "<#ff5733>this is orange</>", inputText)
assert.Equal(t, "this is orange", writer.string())
assert.Equal(t, "This is white, , white again", text)
}
func TestWritePlain(t *testing.T) {
writer := &ColorWriter{
Buffer: new(bytes.Buffer),
}
text := "This is white, this is orange, white again"
writer.write("#193549", "#ff5733", text)
assert.Equal(t, "This is white, this is orange, white again", writer.string())
}
func TestWriteColorOverride(t *testing.T) {
writer := &ColorWriter{
Buffer: new(bytes.Buffer),
}
text := "This is white, <#ff5733>this is orange</>, white again"
writer.write("#193549", "#ff5733", text)
assert.Equal(t, "This is white, this is orange, white again", writer.string())
}