-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1325 from alesstimec/implicit-cloud-for-add-model
Allow adding a model with implicit cloud.
- Loading branch information
Showing
3 changed files
with
246 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,14 +104,6 @@ func TestModelCreateArgs(t *testing.T) { | |
CloudCredentialTag: names.NewCloudCredentialTag("test-cloud/alice/test-credential-1").String(), | ||
}, | ||
expectedError: "owner tag not specified", | ||
}, { | ||
about: "cloud tag not specified", | ||
args: jujuparams.ModelCreateArgs{ | ||
Name: "test-model", | ||
OwnerTag: names.NewUserTag("[email protected]").String(), | ||
CloudCredentialTag: names.NewCloudCredentialTag("test-cloud/alice/test-credential-1").String(), | ||
}, | ||
expectedError: "no cloud specified for model; please specify one", | ||
}} | ||
|
||
opts := []cmp.Option{ | ||
|
@@ -886,6 +878,198 @@ users: | |
CloudCredentialTag: names.NewCloudCredentialTag("test-cloud/[email protected]/test-credential-1").String(), | ||
}, | ||
expectError: "unauthorized", | ||
}, { | ||
name: "CreateModelWithImplicitCloud", | ||
env: ` | ||
clouds: | ||
- name: test-cloud | ||
type: test-provider | ||
regions: | ||
- name: test-region-1 | ||
users: | ||
- user: [email protected] | ||
access: add-model | ||
user-defaults: | ||
- user: [email protected] | ||
defaults: | ||
key4: value4 | ||
cloud-defaults: | ||
- user: [email protected] | ||
cloud: test-cloud | ||
region: test-region-1 | ||
defaults: | ||
key1: value1 | ||
key2: value2 | ||
- user: [email protected] | ||
cloud: test-cloud | ||
defaults: | ||
key3: value3 | ||
cloud-credentials: | ||
- name: test-credential-1 | ||
owner: [email protected] | ||
cloud: test-cloud | ||
auth-type: empty | ||
controllers: | ||
- name: controller-1 | ||
uuid: 00000000-0000-0000-0000-0000-0000000000001 | ||
cloud: test-cloud | ||
region: test-region-1 | ||
cloud-regions: | ||
- cloud: test-cloud | ||
region: test-region-1 | ||
priority: 0 | ||
- name: controller-2 | ||
uuid: 00000000-0000-0000-0000-0000-0000000000002 | ||
cloud: test-cloud | ||
region: test-region-1 | ||
cloud-regions: | ||
- cloud: test-cloud | ||
region: test-region-1 | ||
priority: 2 | ||
`[1:], | ||
updateCredential: func(_ context.Context, _ jujuparams.TaggedCredential) ([]jujuparams.UpdateCredentialModelResult, error) { | ||
return nil, nil | ||
}, | ||
grantJIMMModelAdmin: func(_ context.Context, _ names.ModelTag) error { | ||
return nil | ||
}, | ||
createModel: assertConfig(map[string]interface{}{ | ||
"key4": "value4", | ||
}, createModel(` | ||
uuid: 00000001-0000-0000-0000-0000-000000000001 | ||
status: | ||
status: started | ||
info: running a test | ||
life: alive | ||
users: | ||
- user: [email protected] | ||
access: admin | ||
- user: bob | ||
access: read | ||
`[1:])), | ||
username: "[email protected]", | ||
jimmAdmin: true, | ||
args: jujuparams.ModelCreateArgs{ | ||
Name: "test-model", | ||
OwnerTag: names.NewUserTag("[email protected]").String(), | ||
CloudCredentialTag: names.NewCloudCredentialTag("test-cloud/[email protected]/test-credential-1").String(), | ||
}, | ||
expectModel: dbmodel.Model{ | ||
Name: "test-model", | ||
UUID: sql.NullString{ | ||
String: "00000001-0000-0000-0000-0000-000000000001", | ||
Valid: true, | ||
}, | ||
Owner: dbmodel.Identity{ | ||
Name: "[email protected]", | ||
}, | ||
Controller: dbmodel.Controller{ | ||
Name: "controller-2", | ||
UUID: "00000000-0000-0000-0000-0000-0000000000002", | ||
CloudName: "test-cloud", | ||
CloudRegion: "test-region-1", | ||
}, | ||
CloudRegion: dbmodel.CloudRegion{ | ||
Cloud: dbmodel.Cloud{ | ||
Name: "test-cloud", | ||
Type: "test-provider", | ||
}, | ||
Name: "test-region-1", | ||
}, | ||
CloudCredential: dbmodel.CloudCredential{ | ||
Name: "test-credential-1", | ||
AuthType: "empty", | ||
}, | ||
Life: state.Alive.String(), | ||
Status: dbmodel.Status{ | ||
Status: "started", | ||
Info: "running a test", | ||
}, | ||
}, | ||
}, { | ||
name: "CreateModelWithImplicitCloudAndMultipleClouds", | ||
env: ` | ||
clouds: | ||
- name: test-cloud | ||
type: test-provider | ||
regions: | ||
- name: test-region-1 | ||
users: | ||
- user: [email protected] | ||
access: add-model | ||
- name: test-cloud-2 | ||
type: test-provider-2 | ||
regions: | ||
- name: test-region-2 | ||
users: | ||
- user: [email protected] | ||
access: add-model | ||
user-defaults: | ||
- user: [email protected] | ||
defaults: | ||
key4: value4 | ||
cloud-defaults: | ||
- user: [email protected] | ||
cloud: test-cloud | ||
region: test-region-1 | ||
defaults: | ||
key1: value1 | ||
key2: value2 | ||
- user: [email protected] | ||
cloud: test-cloud | ||
defaults: | ||
key3: value3 | ||
cloud-credentials: | ||
- name: test-credential-1 | ||
owner: [email protected] | ||
cloud: test-cloud | ||
auth-type: empty | ||
controllers: | ||
- name: controller-1 | ||
uuid: 00000000-0000-0000-0000-0000-0000000000001 | ||
cloud: test-cloud | ||
region: test-region-1 | ||
cloud-regions: | ||
- cloud: test-cloud | ||
region: test-region-1 | ||
priority: 0 | ||
- name: controller-2 | ||
uuid: 00000000-0000-0000-0000-0000-0000000000002 | ||
cloud: test-cloud | ||
region: test-region-1 | ||
cloud-regions: | ||
- cloud: test-cloud | ||
region: test-region-1 | ||
priority: 2 | ||
`[1:], | ||
updateCredential: func(_ context.Context, _ jujuparams.TaggedCredential) ([]jujuparams.UpdateCredentialModelResult, error) { | ||
return nil, nil | ||
}, | ||
grantJIMMModelAdmin: func(_ context.Context, _ names.ModelTag) error { | ||
return nil | ||
}, | ||
createModel: assertConfig(map[string]interface{}{ | ||
"key4": "value4", | ||
}, createModel(` | ||
uuid: 00000001-0000-0000-0000-0000-000000000001 | ||
status: | ||
status: started | ||
info: running a test | ||
life: alive | ||
users: | ||
- user: [email protected] | ||
access: admin | ||
- user: bob | ||
access: read | ||
`[1:])), | ||
username: "[email protected]", | ||
jimmAdmin: true, | ||
args: jujuparams.ModelCreateArgs{ | ||
Name: "test-model", | ||
OwnerTag: names.NewUserTag("[email protected]").String(), | ||
CloudCredentialTag: names.NewCloudCredentialTag("test-cloud/[email protected]/test-credential-1").String(), | ||
}, | ||
expectError: "no cloud specified for model; please specify one", | ||
}} | ||
|
||
func TestAddModel(t *testing.T) { | ||
|
@@ -982,6 +1166,9 @@ func createModel(template string) func(context.Context, *jujuparams.ModelCreateA | |
|
||
func assertConfig(config map[string]interface{}, fnc func(context.Context, *jujuparams.ModelCreateArgs, *jujuparams.ModelInfo) error) func(context.Context, *jujuparams.ModelCreateArgs, *jujuparams.ModelInfo) error { | ||
return func(ctx context.Context, args *jujuparams.ModelCreateArgs, mi *jujuparams.ModelInfo) error { | ||
if args.CloudTag == "" { | ||
return errors.E("cloud not specified") | ||
} | ||
if len(config) != len(args.Config) { | ||
return errors.E(fmt.Sprintf("expected %d config settings, got %d", len(config), len(args.Config))) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -860,19 +860,17 @@ var createModelTests = []struct { | |
cloudTag: "not-a-cloud-tag", | ||
credentialTag: "cloudcred-" + jimmtest.TestCloudName + "[email protected]_cred1", | ||
expectError: `"not-a-cloud-tag" is not a valid tag \(bad request\)`, | ||
}, { | ||
about: "no cloud tag", | ||
name: "model-8", | ||
ownerTag: names.NewUserTag("[email protected]").String(), | ||
cloudTag: "", | ||
credentialTag: "cloudcred-" + jimmtest.TestCloudName + "[email protected]_cred1", | ||
expectError: `no cloud specified for model; please specify one`, | ||
}, { | ||
about: "no credential tag selects unambigous creds", | ||
name: "model-8", | ||
ownerTag: names.NewUserTag("[email protected]").String(), | ||
cloudTag: names.NewCloudTag(jimmtest.TestCloudName).String(), | ||
region: jimmtest.TestCloudRegionName, | ||
}, { | ||
about: "success - without a cloud tag", | ||
name: "model-9", | ||
ownerTag: names.NewUserTag("[email protected]").String(), | ||
credentialTag: "cloudcred-" + jimmtest.TestCloudName + "[email protected]_cred", | ||
}} | ||
|
||
func (s *modelManagerSuite) TestCreateModel(c *gc.C) { | ||
|