Files
kubevela/pkg/apiserver/interfaces/api/validate_test.go
barnettZQG 09ce919b2b Feat: Refactoring the API Server module for better layering (#3945)
* Feat: Refactoring the API Server module for better layering

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>

* Fix: code style

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>

* Fix: code style

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>

* Fix: fix the lint errors

Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
2022-05-23 12:17:28 +08:00

131 lines
3.3 KiB
Go

/*
Copyright 2021 The KubeVela Authors.
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 api
import (
"github.com/google/go-cmp/cmp"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
apisv1 "github.com/oam-dev/kubevela/pkg/apiserver/interfaces/api/dto/v1"
)
var _ = Describe("Test validate function", func() {
It("Test check name validate ", func() {
Expect(cmp.Diff(nameRegexp.MatchString("///Asd asda "), false)).Should(BeEmpty())
var app0 = apisv1.CreateApplicationRequest{
Name: "a",
Project: "namespace",
}
err := validate.Struct(&app0)
Expect(err).ShouldNot(BeNil())
var app1 = apisv1.CreateApplicationRequest{
Name: "Asdasd",
Project: "namespace",
}
err = validate.Struct(&app1)
Expect(err).ShouldNot(BeNil())
var app2 = apisv1.CreateApplicationRequest{
Name: "asdasd asdasd ++",
Project: "namespace",
}
err = validate.Struct(&app2)
Expect(err).ShouldNot(BeNil())
var app3 = apisv1.CreateApplicationRequest{
Name: "asdasd",
Project: "namespace",
}
err = validate.Struct(&app3)
Expect(err).Should(BeNil())
var app4 = apisv1.CreateApplicationRequest{
Name: "asdasd-asdasd",
Project: "namespace",
}
err = validate.Struct(&app4)
Expect(err).Should(BeNil())
var component = apisv1.CreateComponentRequest{
Name: "asdasd-asdasd",
ComponentType: "alibaba-ack",
}
err = validate.Struct(&component)
Expect(err).Should(BeNil())
})
It("Test check email validate ", func() {
invalidEmail := &apisv1.CreateUserRequest{
Name: "user",
Password: "password1",
Email: "invalidEmail",
}
err := validate.Struct(invalidEmail)
Expect(err).ShouldNot(BeNil())
validEmail := &apisv1.CreateUserRequest{
Name: "user",
Password: "password1",
Email: "test@example.com",
}
err = validate.Struct(validEmail)
Expect(err).Should(BeNil())
})
It("Test check password validate ", func() {
invalidPwd := &apisv1.CreateUserRequest{
Name: "user",
Password: "password",
Email: "test@example.com",
}
err := validate.Struct(invalidPwd)
Expect(err).ShouldNot(BeNil())
invalidPwd = &apisv1.CreateUserRequest{
Name: "user",
Password: "a",
Email: "test@example.com",
}
err = validate.Struct(invalidPwd)
Expect(err).ShouldNot(BeNil())
invalidPwd = &apisv1.CreateUserRequest{
Name: "user",
Password: "passwordpasswordpassword",
Email: "test@example.com",
}
err = validate.Struct(invalidPwd)
Expect(err).ShouldNot(BeNil())
invalidPwd = &apisv1.CreateUserRequest{
Name: "user",
Password: "11111111",
Email: "test@example.com",
}
err = validate.Struct(invalidPwd)
Expect(err).ShouldNot(BeNil())
validPwd := &apisv1.CreateUserRequest{
Name: "user",
Password: "password1",
Email: "test@example.com",
}
err = validate.Struct(validPwd)
Expect(err).Should(BeNil())
})
})