Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(121)

Delta Between Two Patch Sets: worker/resumer/resumer_test.go

Issue 9738043: cmd/jujud: do not change password
Left Patch Set: cmd/jujud: do not change password Created 11 years, 9 months ago
Right Patch Set: cmd/jujud: do not change password Created 11 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « worker/resumer/resumer.go ('k') | worker/runner.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2013 Canonical Ltd. 1 // Copyright 2013 Canonical Ltd.
2 // Licensed under the AGPLv3, see LICENCE file for details. 2 // Licensed under the AGPLv3, see LICENCE file for details.
3 3
4 package resumer_test 4 package resumer_test
5 5
6 import ( 6 import (
7 stdtesting "testing" 7 stdtesting "testing"
8 "time" 8 "time"
9 9
10 . "launchpad.net/gocheck" 10 . "launchpad.net/gocheck"
11 "launchpad.net/juju-core/juju/testing" 11 "launchpad.net/juju-core/juju/testing"
12 coretesting "launchpad.net/juju-core/testing" 12 coretesting "launchpad.net/juju-core/testing"
13 "launchpad.net/juju-core/worker/resumer" 13 "launchpad.net/juju-core/worker/resumer"
14 ) 14 )
15 15
16 func TestPackage(t *stdtesting.T) { 16 func TestPackage(t *stdtesting.T) {
17 coretesting.MgoTestPackage(t) 17 coretesting.MgoTestPackage(t)
18 } 18 }
19 19
20 type ResumerSuite struct { 20 type ResumerSuite struct {
21 testing.JujuConnSuite 21 testing.JujuConnSuite
22 } 22 }
23 23
24 var _ = Suite(&ResumerSuite{}) 24 var _ = Suite(&ResumerSuite{})
25 25
26 func (s *ResumerSuite) TestRunStopWithState(c *C) { 26 func (s *ResumerSuite) TestRunStopWithState(c *C) {
27 » // Test with state ensures that state fulfills the 27 » // Test with state ensures that state fulfills the
28 // TransactionResumer interface. 28 // TransactionResumer interface.
29 rr := resumer.NewResumer(s.State) 29 rr := resumer.NewResumer(s.State)
30 30
31 c.Assert(rr.Stop(), IsNil) 31 c.Assert(rr.Stop(), IsNil)
32 } 32 }
33 33
34 func (s *ResumerSuite) TestResumerCalls(c *C) { 34 func (s *ResumerSuite) TestResumerCalls(c *C) {
35 // Shorter interval and mock help to count 35 // Shorter interval and mock help to count
36 // the resumer calls in a given timespan. 36 // the resumer calls in a given timespan.
37 resumer.SetInterval(10 * time.Millisecond) 37 resumer.SetInterval(10 * time.Millisecond)
(...skipping 10 matching lines...) Expand all
48 // transactionResumerMock is used to check the 48 // transactionResumerMock is used to check the
49 // calls of ResumeTransactions(). 49 // calls of ResumeTransactions().
50 type transactionResumerMock struct { 50 type transactionResumerMock struct {
51 counter int 51 counter int
52 } 52 }
53 53
54 func (t *transactionResumerMock) ResumeTransactions() error { 54 func (t *transactionResumerMock) ResumeTransactions() error {
55 t.counter++ 55 t.counter++
56 return nil 56 return nil
57 } 57 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b