mirror of https://github.com/go-gorm/gorm.git
29 lines
900 B
Go
29 lines
900 B
Go
|
package gorm_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/jinzhu/gorm"
|
||
|
)
|
||
|
|
||
|
func TestToDBNameGenerateFriendlyName(t *testing.T) {
|
||
|
var maps = map[string]string{
|
||
|
"ThisIsATest": "this_is_a_test",
|
||
|
"PFAndESI": "pf_and_esi",
|
||
|
"AbcAndJkl": "abc_and_jkl",
|
||
|
"EmployeeID": "employee_id",
|
||
|
"HTTPAndSMTP": "http_and_smtp",
|
||
|
"HTTPServerHandlerForURLID": "http_server_handler_for_url_id",
|
||
|
"UUID": "uuid",
|
||
|
"HTTPURL": "http_url",
|
||
|
"HTTP_URL": "http_url",
|
||
|
"ThisIsActuallyATestSoWeMayBeAbleToUseThisCodeInGormPackageAlsoIdCanBeUsedAtTheEndAsID": "this_is_actually_a_test_so_we_may_be_able_to_use_this_code_in_gorm_package_also_id_can_be_used_at_the_end_as_id",
|
||
|
}
|
||
|
|
||
|
for key, value := range maps {
|
||
|
if gorm.ToDBName(key) != value {
|
||
|
t.Errorf("%v ToDBName should equal %v, but got %v", key, value, gorm.ToDBName(key))
|
||
|
}
|
||
|
}
|
||
|
}
|