-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow a custom port range for EC2 VMs
Set the additional text with a comma-separated list of ports i.e. 22,443,80,8080 and these will be added to the security group. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
- Loading branch information
Showing
2 changed files
with
103 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package provision | ||
|
||
import "testing" | ||
|
||
func Test_parsePorts_empty(t *testing.T) { | ||
|
||
ports, err := parsePorts("") | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
if len(ports) != 0 { | ||
t.Fatalf("Expected empty slice, got %d", len(ports)) | ||
} | ||
} | ||
|
||
func Test_parsePorts_single(t *testing.T) { | ||
|
||
wantPort := 80 | ||
str := "80" | ||
ports, err := parsePorts(str) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
if len(ports) != 1 { | ||
t.Fatalf("Want single port, got %d", len(ports)) | ||
} | ||
|
||
if ports[0] != wantPort { | ||
t.Fatalf("Want port %d, got %d", wantPort, ports[0]) | ||
} | ||
} | ||
|
||
func Test_parsePorts_multiple(t *testing.T) { | ||
|
||
wantPorts := []int{27017, 22} | ||
|
||
str := "27017,22" | ||
|
||
ports, err := parsePorts(str) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
if len(ports) != len(wantPorts) { | ||
t.Fatalf("Want %d ports, got %d", len(wantPorts), len(ports)) | ||
} | ||
|
||
found := 0 | ||
|
||
for _, port := range ports { | ||
for _, wantPort := range wantPorts { | ||
if port == wantPort { | ||
found++ | ||
} | ||
} | ||
} | ||
|
||
if found != len(wantPorts) { | ||
t.Fatalf("Want %v ports, got %v", wantPorts, ports) | ||
} | ||
} |