35 lines
924 B
Go
35 lines
924 B
Go
|
package entity
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestLensMap_Get(t *testing.T) {
|
||
|
t.Run("get existing lens", func(t *testing.T) {
|
||
|
r := LensFixtures.Get("lens-f-380")
|
||
|
assert.Equal(t, uint(1000000), r.ID)
|
||
|
assert.Equal(t, "lens-f-380", r.LensSlug)
|
||
|
assert.IsType(t, Lens{}, r)
|
||
|
})
|
||
|
t.Run("get not existing lens", func(t *testing.T) {
|
||
|
r := LensFixtures.Get("Lens 123")
|
||
|
assert.Equal(t, "lens-123", r.LensSlug)
|
||
|
assert.IsType(t, Lens{}, r)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func TestLensMap_Pointer(t *testing.T) {
|
||
|
t.Run("get existing lens pointer", func(t *testing.T) {
|
||
|
r := LensFixtures.Pointer("lens-f-380")
|
||
|
assert.Equal(t, uint(1000000), r.ID)
|
||
|
assert.Equal(t, "lens-f-380", r.LensSlug)
|
||
|
assert.IsType(t, &Lens{}, r)
|
||
|
})
|
||
|
t.Run("get not existing lens pointer", func(t *testing.T) {
|
||
|
r := LensFixtures.Pointer("Lens new")
|
||
|
assert.Equal(t, "lens-new", r.LensSlug)
|
||
|
assert.IsType(t, &Lens{}, r)
|
||
|
})
|
||
|
}
|