git-bug/bug/label_test.go

37 lines
718 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 (
2019-04-10 20:37:06 +03:00
"image/color"
2019-03-28 22:28:53 +03:00
"testing"
"github.com/stretchr/testify/require"
)
2019-04-10 20:37:06 +03:00
func TestLabelRGBA(t *testing.T) {
rgba := Label("test").RGBA()
expected := color.RGBA{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) {
rgba := Label("test1").RGBA()
expected := color.RGBA{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) {
rgba := Label("tset").RGBA()
expected := color.RGBA{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) {
color1 := Label("test").RGBA()
color2 := Label("test").RGBA()
2019-03-28 22:28:53 +03:00
require.Equal(t, color1, color2)
2019-03-28 17:52:31 +03:00
}