Skip to content

Commit 00bcf7c

Browse files
authored
feat(init): activate first create profile (#3441)
1 parent 2d3bc1f commit 00bcf7c

4 files changed

+69
-2
lines changed

internal/namespaces/init/init.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Default path for configuration file is based on the following priority order:
136136
// Show logo banner, or simple welcome message
137137
printScalewayBanner()
138138

139-
config, err := loadConfigOrEmpty(configPath)
139+
config, err := loadConfigOrEmpty(configPath, profileName)
140140
if err != nil {
141141
return nil, err
142142
}
@@ -280,12 +280,16 @@ func printScalewayBanner() {
280280

281281
// loadConfigOrEmpty checks if a config exists
282282
// Creates a new one if it does not
283-
func loadConfigOrEmpty(configPath string) (*scw.Config, error) {
283+
// defaultProfile will be the activated one if different that default
284+
func loadConfigOrEmpty(configPath string, activeProfile string) (*scw.Config, error) {
284285
config, err := scw.LoadConfigFromPath(configPath)
285286
if err != nil {
286287
_, ok := err.(*scw.ConfigFileNotFoundError)
287288
if ok {
288289
config = &scw.Config{}
290+
if activeProfile != scw.DefaultProfileName {
291+
config.ActiveProfile = &activeProfile
292+
}
289293
interactive.Printf("Creating new config\n")
290294
} else {
291295
return nil, err

internal/namespaces/init/init_test.go

+14
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,20 @@ func TestInit(t *testing.T) {
197197
"no",
198198
},
199199
}))
200+
201+
t.Run("Default profile activated", core.Test(&core.TestConfig{
202+
Commands: GetCommands(),
203+
BeforeFunc: baseBeforeFunc(),
204+
TmpHomeDir: true,
205+
Cmd: appendArgs("scw -p newprofile init", defaultArgs),
206+
Check: core.TestCheckCombine(
207+
core.TestCheckGolden(),
208+
checkConfig(func(t *testing.T, ctx *core.CheckFuncCtx, config *scw.Config) {
209+
assert.NotNil(t, config.ActiveProfile)
210+
assert.Equal(t, "newprofile", *config.ActiveProfile)
211+
}),
212+
),
213+
}))
200214
})
201215
}
202216

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
version: 1
3+
interactions:
4+
- request:
5+
body: '{"access_key":"SCWQN1ZYHWPFGJD28Q70", "secret_key":null, "description":"iam",
6+
"created_at":"2022-08-22T09:13:42.922733Z", "updated_at":"2022-10-20T08:29:52.752429Z",
7+
"expires_at":null, "default_project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b",
8+
"editable":true, "creation_ip":"51.159.73.9", "user_id":"38d8ec28-dbee-4dbe-a4e8-56adcc285e8b"}'
9+
form: {}
10+
headers:
11+
User-Agent:
12+
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) scaleway-cli/0.0.0+test
13+
url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX
14+
method: GET
15+
response:
16+
body: '{"access_key":"SCWQN1ZYHWPFGJD28Q70", "secret_key":null, "description":"iam",
17+
"created_at":"2022-08-22T09:13:42.922733Z", "updated_at":"2022-10-20T08:29:52.752429Z",
18+
"expires_at":null, "default_project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b",
19+
"editable":true, "creation_ip":"51.159.73.9", "user_id":"38d8ec28-dbee-4dbe-a4e8-56adcc285e8b"}'
20+
headers:
21+
Content-Length:
22+
- "341"
23+
Content-Security-Policy:
24+
- default-src 'none'; frame-ancestors 'none'
25+
Content-Type:
26+
- application/json
27+
Date:
28+
- Wed, 18 Oct 2023 12:53:51 GMT
29+
Server:
30+
- Scaleway API-Gateway
31+
Strict-Transport-Security:
32+
- max-age=63072000
33+
X-Content-Type-Options:
34+
- nosniff
35+
X-Frame-Options:
36+
- DENY
37+
X-Request-Id:
38+
- 3107e65a-7df2-4aa8-8e1e-883cc691e9af
39+
status: 200 OK
40+
code: 200
41+
duration: ""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲
2+
🟩🟩🟩 STDOUT️ 🟩🟩🟩️
3+
✅ Initialization completed with success.
4+
🟩🟩🟩 JSON STDOUT 🟩🟩🟩
5+
{
6+
"message": "Initialization completed with success",
7+
"details": ""
8+
}

0 commit comments

Comments
 (0)