Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
9bf39481
Commit
9bf39481
authored
Apr 09, 2015
by
Satnam Singh
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6643 from jayunit100/networking-ns2
E2E : Networking.go Implement BeforeEach/AfterEach, and unique namespace...
parents
b7ed9104
52befc19
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
49 deletions
+46
-49
networking.go
test/e2e/networking.go
+46
-49
No files found.
test/e2e/networking.go
View file @
9bf39481
...
@@ -26,59 +26,11 @@ import (
...
@@ -26,59 +26,11 @@ import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/errors"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
)
)
//Namespace constants, implemented
var
svcname
=
"nettest"
var
ns
=
svcname
+
"-"
+
randomSuffix
()
var
c
*
client
.
Client
=
nil
var
c
*
client
.
Client
=
nil
var
namespaceObj
*
api
.
Namespace
var
_
=
BeforeSuite
(
func
()
{
//Assert basic external connectivity.
//Since this is not really a test of kubernetes in any way, we
//leave it as a pre-test assertion, rather than a Ginko test.
By
(
"Executing a successful http request from the external internet"
)
resp
,
err
:=
http
.
Get
(
"http://google.com"
)
if
err
!=
nil
{
Failf
(
"Unable to connect/talk to the internet: %v"
,
err
)
}
if
resp
.
StatusCode
!=
http
.
StatusOK
{
Failf
(
"Unexpected error code, expected 200, got, %v (%v)"
,
resp
.
StatusCode
,
resp
)
}
By
(
"Building a namespace api object"
)
namespaceObj
=
&
api
.
Namespace
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
ns
,
Namespace
:
""
,
},
Status
:
api
.
NamespaceStatus
{},
}
By
(
"Creating a kubernetes client"
)
c
,
err
=
loadClient
()
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
By
(
"Creating a namespace for this test suite"
)
_
,
err
=
c
.
Namespaces
()
.
Create
(
namespaceObj
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
})
var
_
=
AfterSuite
(
func
()
{
By
(
"Destroying namespace for this suite"
)
err
:=
c
.
Namespaces
()
.
Delete
(
namespaceObj
.
ObjectMeta
.
Name
)
if
err
!=
nil
&&
!
errors
.
IsAlreadyExists
(
err
)
{
Failf
(
"Couldng make ns %s"
,
err
)
}
})
func
LaunchNetTestPodPerNode
(
nodes
*
api
.
NodeList
,
name
string
,
c
*
client
.
Client
,
ns
string
)
[]
string
{
func
LaunchNetTestPodPerNode
(
nodes
*
api
.
NodeList
,
name
string
,
c
*
client
.
Client
,
ns
string
)
[]
string
{
podNames
:=
[]
string
{}
podNames
:=
[]
string
{}
...
@@ -122,7 +74,52 @@ func LaunchNetTestPodPerNode(nodes *api.NodeList, name string, c *client.Client,
...
@@ -122,7 +74,52 @@ func LaunchNetTestPodPerNode(nodes *api.NodeList, name string, c *client.Client,
}
}
var
_
=
Describe
(
"Networking"
,
func
()
{
var
_
=
Describe
(
"Networking"
,
func
()
{
//var c *client.Client
//This namespace is modified throughout the course of the test.
var
namespaceObj
*
api
.
Namespace
var
svcname
=
"nettest"
var
c
*
client
.
Client
=
nil
BeforeEach
(
func
()
{
//Assert basic external connectivity.
//Since this is not really a test of kubernetes in any way, we
//leave it as a pre-test assertion, rather than a Ginko test.
By
(
"Executing a successfull http request from the external internet"
)
resp
,
err
:=
http
.
Get
(
"http://google.com"
)
if
err
!=
nil
{
Failf
(
"Unable to connect/talk to the internet: %v"
,
err
)
}
if
resp
.
StatusCode
!=
http
.
StatusOK
{
Failf
(
"Unexpected error code, expected 200, got, %v (%v)"
,
resp
.
StatusCode
,
resp
)
}
By
(
"Building a namespace api object"
)
var
ns
=
svcname
+
"-"
+
randomSuffix
()
namespaceObj
=
&
api
.
Namespace
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
ns
,
Namespace
:
""
,
},
Status
:
api
.
NamespaceStatus
{},
}
By
(
"Creating a kubernetes client"
)
c
,
err
=
loadClient
()
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
By
(
"Creating a namespace for this test suite"
)
_
,
err
=
c
.
Namespaces
()
.
Create
(
namespaceObj
)
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
})
AfterEach
(
func
()
{
By
(
"Destroying namespace for this suite"
)
if
err
:=
c
.
Namespaces
()
.
Delete
(
namespaceObj
.
Name
);
err
!=
nil
{
Failf
(
"Couldn't delete ns %s"
,
err
)
}
})
// First test because it has no dependencies on variables created later on.
// First test because it has no dependencies on variables created later on.
It
(
"should provide unchanging, static URL paths for kubernetes api services."
,
func
()
{
It
(
"should provide unchanging, static URL paths for kubernetes api services."
,
func
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment