LEFT | RIGHT |
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 Loading... |
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 } |
LEFT | RIGHT |