Skip to content

Commit 29f6166

Browse files
committed
Improve the error message when running nested inside a non-Toolbx container
Fixes issue #1183 Signed-off-by: Nieves Montero <[email protected]>
1 parent 3cfb6bf commit 29f6166

10 files changed

+22
-0
lines changed

src/cmd/root.go

+4
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ func preRun(cmd *cobra.Command, args []string) error {
142142
if _, err := validateSubIDRanges(cmd, args, currentUser); err != nil {
143143
return err
144144
}
145+
} else {
146+
if !utils.IsInsideToolboxContainer() {
147+
return createErrorNonToolboxContainer()
148+
}
145149
}
146150

147151
toolboxPath := os.Getenv("TOOLBOX_PATH")

src/cmd/utils.go

+10
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,16 @@ func createErrorInvalidRelease(hint string) error {
138138
return errors.New(errMsg)
139139
}
140140

141+
func createErrorNonToolboxContainer() error {
142+
var builder strings.Builder
143+
fmt.Fprintf(&builder, "this is not a Toolbox container.\n")
144+
fmt.Fprintf(&builder, "Toolbox is only meant to work with Toolbox containers.\n")
145+
fmt.Fprintf(&builder, "Run '%s --help' for usage.", executableBase)
146+
147+
errMsg := builder.String()
148+
return errors.New(errMsg)
149+
}
150+
141151
func getUsageForCommonCommands() string {
142152
var builder strings.Builder
143153
fmt.Fprintf(&builder, "create Create a new toolbox container\n")

test/system/001-version.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers.bash'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
}
2526

test/system/002-help.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers.bash'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
}
2526

test/system/101-create.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
cleanup_containers
2526
}

test/system/103-container.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
cleanup_containers
2526
}

test/system/104-run.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
cleanup_containers
2526
}

test/system/105-enter.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
cleanup_containers
2526
}

test/system/106-rm.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
cleanup_containers
2526
}

test/system/108-completion.bats

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ load 'libs/bats-assert/load'
2020
load 'libs/helpers'
2121

2222
setup() {
23+
bats_require_minimum_version 1.5.0
2324
_setup_environment
2425
}
2526

0 commit comments

Comments
 (0)