Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
03ff35d6
Commit
03ff35d6
authored
May 04, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Server tests
parent
22549b03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
packer/rpc/server_test.go
packer/rpc/server_test.go
+39
-0
No files found.
packer/rpc/server_test.go
0 → 100644
View file @
03ff35d6
package
rpc
import
(
"cgl.tideland.biz/asserts"
"net/rpc"
"testing"
)
func
TestServer_Address_PanicIfNotStarted
(
t
*
testing
.
T
)
{
assert
:=
asserts
.
NewTestingAsserts
(
t
,
true
)
defer
func
()
{
p
:=
recover
()
assert
.
NotNil
(
p
,
"should panic"
)
assert
.
Equal
(
p
.
(
string
),
"Server not listening."
,
"right panic"
)
}()
NewServer
()
.
Address
()
}
func
TestServer_Start
(
t
*
testing
.
T
)
{
assert
:=
asserts
.
NewTestingAsserts
(
t
,
true
)
s
:=
NewServer
()
// Verify it can start
err
:=
s
.
Start
()
assert
.
Nil
(
err
,
"should start without err"
)
addr
:=
s
.
Address
()
// Verify we can connect to it!
_
,
err
=
rpc
.
Dial
(
"tcp"
,
addr
)
assert
.
Nil
(
err
,
"should be able to connect to RPC"
)
// Verify it stops
s
.
Stop
()
_
,
err
=
rpc
.
Dial
(
"tcp"
,
addr
)
assert
.
NotNil
(
err
,
"should NOT be able to connect to RPC"
)
}
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