git-bug/bug/label_test.go

36 lines
708 B
Go
Raw Normal View History

2019-03-28 17:52:31 +03:00
package bug
2019-03-28 22:28:53 +03:00
import (
"testing"
"github.com/stretchr/testify/require"
)
2019-04-10 20:37:06 +03:00
func TestLabelRGBA(t *testing.T) {
2019-10-15 22:03:27 +03:00
rgba := Label("test").Color()
expected := LabelColor{R: 255, G: 87, B: 34, A: 255}
2019-03-28 22:28:53 +03:00
2019-04-10 20:37:06 +03:00
require.Equal(t, expected, rgba)
2019-03-28 17:52:31 +03:00
}
2019-04-10 20:37:06 +03:00
func TestLabelRGBASimilar(t *testing.T) {
2019-10-15 22:03:27 +03:00
rgba := Label("test1").Color()
expected := LabelColor{R: 0, G: 188, B: 212, A: 255}
2019-03-28 22:28:53 +03:00
2019-04-10 20:37:06 +03:00
require.Equal(t, expected, rgba)
2019-03-28 17:52:31 +03:00
}
2019-04-10 20:37:06 +03:00
func TestLabelRGBAReverse(t *testing.T) {
2019-10-15 22:03:27 +03:00
rgba := Label("tset").Color()
expected := LabelColor{R: 233, G: 30, B: 99, A: 255}
2019-03-28 22:28:53 +03:00
2019-04-10 20:37:06 +03:00
require.Equal(t, expected, rgba)
2019-03-28 17:52:31 +03:00
}
2019-04-10 20:37:06 +03:00
func TestLabelRGBAEqual(t *testing.T) {
2019-10-15 22:03:27 +03:00
color1 := Label("test").Color()
color2 := Label("test").Color()
2019-03-28 22:28:53 +03:00
require.Equal(t, color1, color2)
2019-03-28 17:52:31 +03:00
}