Merge branch 'new-ui-with-sync-image' of https://github.com/vmware/harbor into new-ui-with-sync-image

This commit is contained in:
kunw 2016-06-20 19:16:35 +08:00
commit 4eb95078e0
4 changed files with 12 additions and 10 deletions

View File

@ -35,11 +35,13 @@ db_password = root123
#Turn on or off the self-registration feature
self_registration = on
#Turn on or off the customize your certicate
customize_crt = on
#Number of job workers in job service, default is 3
max_job_workers = 3
#Number of job workers in job service, default is 10
max_job_workers = 10
#Turn on or off the customize your certificate for registry's token.
#If the value is on, the prepare script will generate new root cert and private key
#for generating token to access the image in registry.
customize_crt = on
#fill in your certicate message
crt_country = CN

View File

@ -9,7 +9,7 @@ import (
func TestAddProject(t *testing.T) {
fmt.Println("Test for Project Add (ProjectsPost) API\n")
fmt.Println("Test for Project Add (ProjectsPost) API")
assert := assert.New(t)
apiTest := HarborAPI.NewHarborAPI()

View File

@ -9,7 +9,7 @@ import (
)
func TestRepositoryDelete(t *testing.T) {
fmt.Println("Test for Project Delete (ProjectDelete) API\n")
fmt.Println("Test for Project Delete (ProjectDelete) API")
assert := assert.New(t)
//prepare for test
@ -17,7 +17,7 @@ func TestRepositoryDelete(t *testing.T) {
admin := &HarborAPI.UsrInfo{"admin", "Harbor12345"}
prjUsr := &HarborAPI.UsrInfo{"unknown", "unknown"}
fmt.Println("Checking repository status...\n")
fmt.Println("Checking repository status...")
apiTest := HarborAPI.NewHarborAPI()
var searchResault HarborAPI.Search
searchResault, err := apiTest.SearchGet("library")
@ -32,14 +32,14 @@ func TestRepositoryDelete(t *testing.T) {
t.Error("fail to find repo 'library/docker'", err.Error())
t.Log(err)
} else {
fmt.Println("repo 'library/docker' exit\n")
fmt.Println("repo 'library/docker' exit")
}
//assert.Equal(searchResault.Repositories[1].RepoName, "library/hello-world", "2nd repo name should be")
if !assert.Equal(searchResault.Repositories[1].RepoName, "library/hello-world", "2nd repo name should be") {
t.Error("fail to find repo 'library/hello-world'", err.Error())
t.Log(err)
} else {
fmt.Println("repo 'library/hello-world' exit\n")
fmt.Println("repo 'library/hello-world' exit")
}
//t.Log(resault)

View File

@ -8,7 +8,7 @@ import (
)
func TestSearch(t *testing.T) {
fmt.Println("Test for Search (SearchGet) API\n")
fmt.Println("Test for Search (SearchGet) API")
assert := assert.New(t)
apiTest := HarborAPI.NewHarborAPI()