示例#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()
示例#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()
示例#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()
示例#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()
示例#5
0
 def test_configure(self):
     polisher = PlumberyPolisher.from_shelf('configure', {})
     do_polish(polisher)
示例#6
0
 def test_ansible(self):
     polisher = PlumberyPolisher.from_shelf('ansible', {})
     do_polish(polisher)
示例#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()
示例#8
0
 def test_ping(self):
     polisher = PlumberyPolisher.from_shelf('ping', {})
     do_polish(polisher)
示例#9
0
 def test_rub(self):
     polisher = PlumberyPolisher.from_shelf(
         'rub', fakeRubConfiguration)
     do_polish(polisher)
示例#10
0
 def test_ping(self):
     polisher = PlumberyPolisher.from_shelf('ping', {})
     do_polish(polisher)
示例#11
0
 def test_inventory(self):
     polisher = PlumberyPolisher.from_shelf('inventory', {})
     do_polish(polisher)
示例#12
0
 def test_information(self):
     polisher = PlumberyPolisher.from_shelf('information', {})
     do_polish(polisher)
示例#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)
示例#16
0
 def test_information(self):
     polisher = PlumberyPolisher.from_shelf('information', {})
     do_polish(polisher)
示例#17
0
 def test_inventory(self):
     polisher = PlumberyPolisher.from_shelf('inventory', {})
     do_polish(polisher)
示例#18
0
 def test_spit(self):
     polisher = PlumberyPolisher.from_shelf('spit', {})
     do_polish(polisher)
示例#19
0
 def test_prepare(self):
     polisher = PlumberyPolisher.from_shelf('prepare',
                                            fakePrepareConfiguration)
     do_polish(polisher)
示例#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()