// Copyright 2021 The casbin Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package util import ( "testing" "github.com/google/uuid" "github.com/stretchr/testify/assert" ) func TestParseInt(t *testing.T) { scenarios := []struct { description string input string expected interface{} }{ {"Should be return zero when value is empty", "", 0}, {"Should be return 0", "0", 0}, {"Should be return 5", "5", 5}, {"Should be return 10", "10", 10}, {"Should be return -1", "-1", -1}, {"Should be return -5", "-5", -5}, {"Should be return -10", "-10", -10}, {"Should be return -10", "string", "panic"}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { if scenery.expected == "panic" { defer func() { if r := recover(); r == nil { t.Error("function should panic") } }() ParseInt(scenery.input) } else { actual := ParseInt(scenery.input) assert.Equal(t, scenery.expected, actual, "The returned value not is expected") } }) } } func TestParseBool(t *testing.T) { scenarios := []struct { description string input string expected interface{} }{ {"Should be return false", "0", false}, {"Should be return true", "5", true}, {"Should be return true", "10", true}, {"Should be return true", "-1", true}, {"Should be return false", "", false}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual := ParseBool(scenery.input) assert.Equal(t, scenery.expected, actual, "The returned value not is expected") }) } } func TestBoolToString(t *testing.T) { scenarios := []struct { description string input bool expected interface{} }{ {"Should be return 1", true, "1"}, {"Should be return 0", false, "0"}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual := BoolToString(scenery.input) assert.Equal(t, scenery.expected, actual, "The returned value not is expected") }) } } func TestCamelToSnakeCase(t *testing.T) { scenarios := []struct { description string input string expected interface{} }{ {"Should be return casdor_is_the_best", "CasdoorIsTheBest", "casdoor_is_the_best"}, {"Should be return lorem_ipsum", "Lorem Ipsum", "lorem_ipsum"}, {"Should be return Lorem Ipsum", "lorem Ipsum", "lorem_ipsum"}, {"Should be return lorem_ipsum", "lorem ipsum", "loremipsum"}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual := CamelToSnakeCase(scenery.input) assert.Equal(t, scenery.expected, actual, "The returned value not is expected") }) } } func TestGenerateId(t *testing.T) { scenarios := []struct { description string input string expected interface{} }{ {"Scenery one", GenerateId(), nil}, {"Scenery two", GenerateId(), nil}, {"Scenery three", "00000000-0000-0000-0000-000000000000", nil}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { _, err := uuid.Parse(scenery.input) assert.Equal(t, scenery.expected, err, "Should be return empty") }) } _, SceneryTree := uuid.Parse("00000000-0000-0000-0000-00000000000S") assert.Equal(t, "invalid UUID format", SceneryTree.Error(), "Errou") _, SceneryFor := uuid.Parse("00000000-0000-0000-0000-000000000000S") assert.Equal(t, "invalid UUID length: 37", SceneryFor.Error(), "Errou") } func TestGetId(t *testing.T) { scenarios := []struct { description string input []string expected interface{} }{ {"Scenery one", []string{"admin", "casdoor"}, "admin/casdoor"}, {"Scenery two", []string{"admin", "casbin"}, "admin/casbin"}, {"Scenery three", []string{"test", "lorem ipsum"}, "test/lorem ipsum"}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual := GetId(scenery.input[0], scenery.input[1]) assert.Equal(t, scenery.expected, actual, "This not is a valid MD5") }) } } func TestGetMd5Hash(t *testing.T) { scenarios := []struct { description string input string expected interface{} }{ {"Scenery one", "casdoor", "0b874f488b4705693a60256b8f3a32da"}, {"Scenery two", "casbin", "59c5a967f086f65366a80dbdd1205a6c"}, {"Scenery three", "lorem ipsum", "80a751fde577028640c419000e33eba6"}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual := GetMd5Hash(scenery.input) assert.Equal(t, scenery.expected, actual, "This not is a valid MD5") }) } } func TestIsStrsEmpty(t *testing.T) { scenarios := []struct { description string input []string expected interface{} }{ {"Should be return true if one is empty", []string{"", "lorem", "ipsum"}, true}, {"Should be return true if is empty", []string{""}, true}, {"Should be return false all is a valid string", []string{"lorem", "ipsum"}, false}, {"Should be return false is function called with empty parameters", []string{}, false}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual := IsStringsEmpty(scenery.input...) assert.Equal(t, scenery.expected, actual, "The returned value not is expected") }) } } func TestSnakeString(t *testing.T) { scenarios := []struct { description string input string expected interface{} }{ {"Should be return casdor_is_the_best", "CasdoorIsTheBest", "casdoor_is_the_best"}, {"Should be return lorem_ipsum", "Lorem Ipsum", "lorem_ipsum"}, {"Should be return lorem_ipsum", "lorem Ipsum", "lorem_ipsum"}, {"Should be return loremipsum", "lorem ipsum", "loremipsum"}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual := SnakeString(scenery.input) assert.Equal(t, scenery.expected, actual, "The returned value not is expected") }) } } func TestParseId(t *testing.T) { scenarios := []struct { description string input interface{} expected interface{} }{ {"Should be return 123456", "123456", "123456"}, {"Should be return 123456", 123456, "123456"}, {"Should be return 123456", int64(123456), "123456"}, {"Should be return 123456", float64(123456), "123456"}, } for _, scenery := range scenarios { t.Run(scenery.description, func(t *testing.T) { actual, err := ParseIdToString(scenery.input) assert.Nil(t, err, "The returned value not is expected") assert.Equal(t, scenery.expected, actual, "The returned value not is expected") }) } }