mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
177f328ac6
resolves #5
38 lines
1.1 KiB
Go
Executable file
38 lines
1.1 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, "<#ff5733>this is orange</>, white again", text)
|
|
assert.NotContains(t, writer.string(), "<#ff5733>")
|
|
}
|
|
|
|
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 white, , white again", text)
|
|
assert.NotContains(t, writer.string(), "<#ff5733>")
|
|
}
|
|
|
|
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.NotContains(t, writer.string(), "<#ff5733>")
|
|
}
|