forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added more test attributes to expose_test.go, vmi_mulutus_test.go, vm…
…i_networking_test.go
- Loading branch information
1 parent
88d2ba6
commit 8bb6bdc
Showing
3 changed files
with
356 additions
and
354 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,15 +63,15 @@ func waitForJobToCompleteWithStatus(virtClient *kubecli.KubevirtClient, jobPod * | |
}, time.Duration(timeoutSec)*time.Second, 1*time.Second).Should(Equal(jobPodPhase)) | ||
} | ||
|
||
var _ = Describe("Expose", func() { | ||
var _ = Describe("[rfe_id:253][crit:medium][vendor:[email protected]][level:component]Expose", func() { | ||
|
||
flag.Parse() | ||
|
||
virtClient, err := kubecli.GetKubevirtClient() | ||
tests.PanicOnError(err) | ||
const testPort = 1500 | ||
|
||
Context("[rfe_id:253][crit:medium][vendor:[email protected]][level:component]Expose service on a VM", func() { | ||
Context("Expose service on a VM", func() { | ||
var tcpVM *v1.VirtualMachineInstance | ||
tests.BeforeAll(func() { | ||
tcpVM = newLabeledVM("vm", virtClient) | ||
|
@@ -331,7 +331,7 @@ var _ = Describe("Expose", func() { | |
}) | ||
}) | ||
|
||
Context("[rfe_id:253][crit:high][vendor:[email protected]][level:component]Expose a VM as a service.", func() { | ||
Context("Expose a VM as a service.", func() { | ||
const servicePort = "27017" | ||
const serviceName = "cluster-ip-vm" | ||
var vm *v1.VirtualMachine | ||
|
Oops, something went wrong.