This repository was archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathide_test.go
51 lines (47 loc) · 1.69 KB
/
ide_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package main
import (
"fmt"
)
func ExampleIdeDockerRun() {
*DryRunFlag = true
DryRunPush("", "172.17.0.2", "641792b3e0112c8fa1896b8944a846dbbab88fe5729f3d464e71475afd9e6057",
"", "Error:",
"", "172.17.0.2")
RuntimeOS = "darwin"
fmt.Println(1, ideDockerRun("/tmp", ""))
fmt.Println(2, ideDockerRun("/tmp", ""))
fmt.Println(3, ideDockerRun("", ""))
// Output:
// docker pull pagopa/iosdk-theia:test
// docker inspect --format={{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}} iosdk-openwhisk
// docker run -d -p 3000:3000 --rm --name iosdk-theia -e HOME=/home/project -v /tmp:/home/project --add-host=openwhisk:172.17.0.2 pagopa/iosdk-theia:test
// 1 <nil>
// docker pull pagopa/iosdk-theia:test
// docker inspect --format={{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}} iosdk-openwhisk
// 2 cannot find openwhisk
// docker pull pagopa/iosdk-theia:test
// docker inspect --format={{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}} iosdk-openwhisk
// docker run -d -p 3000:3000 --rm --name iosdk-theia -e HOME=/home/project --add-host=openwhisk:172.17.0.2 pagopa/iosdk-theia:test
// 3 <nil>
}
func ExampleIdeDockerRm() {
*DryRunFlag = true
DryRunPush("iosdk-theia")
IdeDestroy()
// Output:
// docker kill iosdk-theia
// Destroying IDE: iosdk-theia
}
func ExampleFixPathDockerToolbox() {
RuntimeOS = "linux"
fmt.Println(fixPathDockerToolbox("a\\b", "does not matter"))
RuntimeOS = "windows"
fmt.Println(fixPathDockerToolbox("a\\b", "does not matter"))
fmt.Println(fixPathDockerToolbox("a\\b", "\nOperating System: Boot2Docker etc etc"))
fmt.Println(fixPathDockerToolbox("c:\\a\\b", "\nOperating System: Boot2Docker etc etc"))
// Output:
// a\b
// a\b
// a/b
// //c/a/b
}