Esempio n. 1
0
 def test_ping(self):
     self.polisher = PlumberyPolisher.from_shelf('ping', {})
     self.polisher.go(FakeEngine())
     self.polisher.move_to(FakeFacility())
     self.polisher.shine_node(
         FakeNode(), fakeNodeSettings, FakeContainer())
     self.polisher.reap()
Esempio n. 2
0
 def test_ansible(self):
     self.polisher = PlumberyPolisher.from_shelf('ansible',
                                                 fakeAnsibleConfiguration)
     self.polisher.go(FakeEngine())
     self.polisher.move_to(FakeFacility())
     self.polisher.shine_node(FakeNode(), fakeNodeSettings, FakeContainer())
     self.polisher.reap()
Esempio n. 3
0
 def test_rub(self):
     self.polisher = PlumberyPolisher.from_shelf(
         'rub', fakeRubConfiguration)
     self.polisher.go(FakeEngine())
     self.polisher.move_to(FakeFacility())
     self.polisher.shine_node(FakeNode(), fakeNodeSettings, FakeContainer())
     self.polisher.reap()
Esempio n. 4
0
 def test_inventory(self):
     self.polisher = PlumberyPolisher.from_shelf(
         'inventory', fakeInventoryConfiguration)
     self.polisher.go(FakeEngine())
     self.polisher.move_to(FakeFacility())
     self.polisher.shine_node(FakeNode(), fakeNodeSettings, FakeContainer())
     self.polisher.reap()
Esempio n. 5
0
 def test_configure(self):
     polisher = PlumberyPolisher.from_shelf('configure', {})
     do_polish(polisher)
Esempio n. 6
0
 def test_ansible(self):
     polisher = PlumberyPolisher.from_shelf('ansible', {})
     do_polish(polisher)
Esempio n. 7
0
 def test_spit(self):
     self.polisher = PlumberyPolisher.from_shelf('spit', fakeSpitConfiguration)
     self.polisher.go(FakeEngine())
     self.polisher.move_to(FakeFacility())
     self.polisher.shine_node(FakeNode(), fakeNodeSettings)
     self.polisher.reap()
Esempio n. 8
0
 def test_ping(self):
     polisher = PlumberyPolisher.from_shelf('ping', {})
     do_polish(polisher)
Esempio n. 9
0
 def test_rub(self):
     polisher = PlumberyPolisher.from_shelf(
         'rub', fakeRubConfiguration)
     do_polish(polisher)
Esempio n. 10
0
 def test_ping(self):
     polisher = PlumberyPolisher.from_shelf('ping', {})
     do_polish(polisher)
Esempio n. 11
0
 def test_inventory(self):
     polisher = PlumberyPolisher.from_shelf('inventory', {})
     do_polish(polisher)
Esempio n. 12
0
 def test_information(self):
     polisher = PlumberyPolisher.from_shelf('information', {})
     do_polish(polisher)
Esempio n. 13
0
 def test_ansible(self):
     polisher = PlumberyPolisher.from_shelf('ansible', {})
     do_polish(polisher)
 def test_prepare(self):
     polisher = PlumberyPolisher.from_shelf(
         'prepare', fakePrepareConfiguration)
     do_polish(polisher)
 def test_configure(self):
     polisher = PlumberyPolisher.from_shelf('configure', {})
     do_polish(polisher)
Esempio n. 16
0
 def test_information(self):
     polisher = PlumberyPolisher.from_shelf('information', {})
     do_polish(polisher)
Esempio n. 17
0
 def test_inventory(self):
     polisher = PlumberyPolisher.from_shelf('inventory', {})
     do_polish(polisher)
Esempio n. 18
0
 def test_spit(self):
     polisher = PlumberyPolisher.from_shelf('spit', {})
     do_polish(polisher)
Esempio n. 19
0
 def test_prepare(self):
     polisher = PlumberyPolisher.from_shelf('prepare',
                                            fakePrepareConfiguration)
     do_polish(polisher)
Esempio n. 20
0
 def test_ansible(self):
     self.polisher = PlumberyPolisher.from_shelf('ansible', fakeAnsibleConfiguration)
     self.polisher.go(FakeEngine())
     self.polisher.move_to(FakeFacility())
     self.polisher.shine_node(FakeNode(), fakeNodeSettings)
     self.polisher.reap()