annotate gamelib/tests/test_walkthrough.py @ 729:7d777c9a1af1 pyntnclick

Remove the last suspended-sentence-specific bits from GameLogicTestCase
author Stefano Rivera <stefano@rivera.za.net>
date Tue, 15 Jan 2013 22:55:08 +0200
parents db0762f1de5a
children eca4d2fc11a4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
729
7d777c9a1af1 Remove the last suspended-sentence-specific bits from GameLogicTestCase
Stefano Rivera <stefano@rivera.za.net>
parents: 728
diff changeset
1 import gamelib.main
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
2 import game_logic_utils
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
3
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
4
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
5 class TestWalkthrough(game_logic_utils.GameLogicTestCase):
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
6
729
7d777c9a1af1 Remove the last suspended-sentence-specific bits from GameLogicTestCase
Stefano Rivera <stefano@rivera.za.net>
parents: 728
diff changeset
7 GAME_DESCRIPTION_CLASS = gamelib.main.SuspendedSentence
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
8 CURRENT_SCENE = 'cryo'
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
9
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
10 def move_to(self, target):
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
11 self.interact_thing(self.state.current_scene.name + '.door')
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
12 self.assert_current_scene('map')
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
13 self.interact_thing('map.to' + target)
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
14 self.assert_current_scene(target)
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
15
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
16 def test_walkthrough(self):
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
17 """A complete game walkthrough.
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
18
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
19 This should only contain interacts and assertions."""
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
20
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
21 # TODO: Add flavour interactions, maybe?
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
22
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
23 # Partially open the door.
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
24 self.assert_game_data('door', 'shut', 'cryo.door')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
25 self.interact_thing('cryo.door')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
26 self.assert_game_data('door', 'ajar', 'cryo.door')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
27
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
28 # Get the titanium leg.
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
29 self.interact_thing('cryo.unit.1')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
30 self.assert_detail_thing('cryo.titanium_leg')
724
11daadcb06d6 We can now walk through until we hit the first JimLabel
Stefano Rivera <stefano@rivera.za.net>
parents: 536
diff changeset
31 self.interact_thing('cryo.titanium_leg', detail='cryo_detail')
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
32 self.assert_detail_thing('cryo.titanium_leg', False)
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
33 self.assert_inventory_item('titanium_leg')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
34
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
35 # Open the door the rest of the way.
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
36 self.interact_thing('cryo.door', 'titanium_leg')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
37 self.assert_game_data('door', 'open', 'cryo.door')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
38 self.assert_inventory_item('titanium_leg')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
39
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
40 # Go to the mess.
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
41 self.move_to('mess')
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
42
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
43 # Check that life support is broken
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
44 self.assert_game_data('life support status', 'broken')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
45
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
46 # Get the cans.
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
47 self.assert_game_data('cans_available', 3, 'mess.cans')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
48 self.interact_thing('mess.cans')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
49 self.assert_inventory_item('full_can.0')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
50 self.assert_game_data('cans_available', 2, 'mess.cans')
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
51 self.interact_thing('mess.cans')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
52 self.assert_inventory_item('full_can.1')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
53 self.assert_game_data('cans_available', 1, 'mess.cans')
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
54 self.interact_thing('mess.cans')
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
55 self.assert_inventory_item('full_can.2')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
56 self.assert_scene_thing('mess.cans', False)
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
57
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
58 # Bash one of the cans.
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
59 self.assert_item_exists('dented_can.0', False)
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
60 self.interact_item('full_can.1', 'titanium_leg')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
61 self.assert_inventory_item('dented_can.0')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
62 self.assert_inventory_item('full_can.1', False)
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
63
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
64 # Go to the machine room.
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
65 self.move_to('machine')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
66
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
67 # Sharpen leg into machete.
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
68 self.interact_thing('machine.grinder', 'titanium_leg')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
69 self.assert_inventory_item('titanium_leg', False)
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
70 self.assert_inventory_item('machete')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
71
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
72 # Go to the cryo room.
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
73 self.move_to('cryo')
252
dfc89bc64fdb Start of walkthrough "unit test" and associated fixes and tweaks.
Jeremy Thurgood <firxen@gmail.com>
parents:
diff changeset
74
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
75 # Chop up some pipes.
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
76 self.assert_game_data('fixed', True, 'cryo.pipe.left')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
77 self.interact_thing('cryo.pipe.left', 'machete')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
78 self.assert_game_data('fixed', False, 'cryo.pipe.left')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
79 self.assert_inventory_item('tube_fragment.0')
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
80
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
81 self.assert_game_data('fixed', True, 'cryo.pipe.right.top')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
82 self.interact_thing('cryo.pipe.right.top', 'machete')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
83 self.assert_game_data('fixed', False, 'cryo.pipe.right.top')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
84 self.assert_inventory_item('tube_fragment.1')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
85
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
86 self.assert_game_data('fixed', True, 'cryo.pipe.right.bottom')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
87 self.interact_thing('cryo.pipe.right.bottom', 'machete')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
88 self.assert_game_data('fixed', False, 'cryo.pipe.right.bottom')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
89 self.assert_inventory_item('tube_fragment.2')
254
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
90
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
91 # Go to the mess.
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
92 self.move_to('mess')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
93
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
94 # Clear the broccoli.
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
95 self.assert_game_data('status', 'blocked', 'mess.tubes')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
96 self.interact_thing('mess.tubes', 'machete')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
97 self.assert_game_data('status', 'broken', 'mess.tubes')
ca0c2875ad8f More test fixes.
Jeremy Thurgood <firxen@gmail.com>
parents: 252
diff changeset
98
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
99 # Go to the bridge.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
100 self.move_to('bridge')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
101
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
102 # Check that the AI is online.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
103 self.assert_game_data('ai status', 'online')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
104
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
105 # Get the stethoscope.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
106 self.interact_thing('bridge.stethoscope')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
107 self.assert_inventory_item('stethoscope')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
108 self.assert_scene_thing('bridge.stethoscope', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
109
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
110 # Get the superconductor.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
111 self.interact_thing('bridge.massagechair_base')
727
657b4da736bc Fix rest of the test suite
Neil Muller <neil@dip.sun.ac.za>
parents: 724
diff changeset
112 self.interact_thing('bridge.superconductor', detail='chair_detail')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
113 self.assert_inventory_item('superconductor')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
114 self.assert_detail_thing('bridge.superconductor', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
115
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
116 # Go to the crew quarters.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
117 self.move_to('crew_quarters')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
118
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
119 # Get the poster.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
120 self.interact_thing('crew.poster')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
121 self.assert_inventory_item('escher_poster')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
122 self.assert_scene_thing('crew.poster', False)
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
123
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
124 # Get the fishbowl.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
125 self.assert_game_data('has_bowl', True, 'crew.fishbowl')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
126 self.interact_thing('crew.fishbowl')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
127 self.assert_game_data('has_bowl', False, 'crew.fishbowl')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
128 self.assert_inventory_item('fishbowl')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
129
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
130 # Crack the safe.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
131 self.assert_game_data('is_cracked', False, 'crew.safe')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
132 self.interact_thing('crew.safe', 'stethoscope')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
133 self.assert_game_data('is_cracked', True, 'crew.safe')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
134
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
135 # Get the duct tape.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
136 self.assert_game_data('has_tape', True, 'crew.safe')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
137 self.interact_thing('crew.safe')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
138 self.assert_game_data('has_tape', False, 'crew.safe')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
139 self.assert_inventory_item('duct_tape')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
140
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
141 # Make the helmet.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
142 self.interact_item('fishbowl', 'duct_tape')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
143 self.assert_inventory_item('helmet')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
144 self.assert_inventory_item('fishbowl', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
145
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
146 # Go to the engine room.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
147 self.move_to('engine')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
148
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
149 # Check that the engines are broken.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
150 self.assert_game_data('engine online', False)
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
151
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
152 # Get the can opener.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
153 self.interact_thing('engine.canopener')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
154 self.assert_inventory_item('canopener')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
155 self.assert_scene_thing('engine.canopener', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
156
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
157 # Open the cans.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
158 self.interact_item('full_can.2', 'canopener')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
159 self.assert_inventory_item('full_can.2', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
160 self.assert_inventory_item('empty_can.0')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
161
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
162 self.interact_item('full_can.0', 'canopener')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
163 self.assert_inventory_item('full_can.0', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
164 self.assert_inventory_item('empty_can.1')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
165
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
166 self.interact_item('dented_can.0', 'canopener')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
167 self.assert_inventory_item('dented_can.0', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
168 self.assert_inventory_item('empty_can.2')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
169
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
170 # Go to the machine room.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
171 self.move_to('machine')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
172
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
173 # Weld pipes and cans.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
174 self.assert_game_data('contents', set(), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
175 self.interact_thing('machine.welder.slot', 'tube_fragment.0')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
176 self.assert_inventory_item('tube_fragment.0', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
177 self.assert_game_data('contents', set(['tube']), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
178 self.interact_thing('machine.welder.slot', 'empty_can.1')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
179 self.assert_inventory_item('empty_can.1', False)
536
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
180 self.assert_game_data(
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
181 'contents', set(['tube', 'can']), 'machine.welder.slot')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
182 self.interact_thing('machine.welder.button')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
183 self.assert_game_data('contents', set(), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
184 self.assert_inventory_item('cryo_pipes_one')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
185
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
186 self.assert_game_data('contents', set(), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
187 self.interact_thing('machine.welder.slot', 'tube_fragment.2')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
188 self.assert_inventory_item('tube_fragment.2', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
189 self.assert_game_data('contents', set(['tube']), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
190 self.interact_thing('machine.welder.slot', 'empty_can.2')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
191 self.assert_inventory_item('empty_can.2', False)
536
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
192 self.assert_game_data(
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
193 'contents', set(['tube', 'can']), 'machine.welder.slot')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
194 self.interact_thing('machine.welder.button')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
195 self.assert_game_data('contents', set(), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
196 self.assert_inventory_item('cryo_pipes_one', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
197 self.assert_inventory_item('cryo_pipes_two')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
198
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
199 self.assert_game_data('contents', set(), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
200 self.interact_thing('machine.welder.slot', 'tube_fragment.1')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
201 self.assert_inventory_item('tube_fragment.1', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
202 self.assert_game_data('contents', set(['tube']), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
203 self.interact_thing('machine.welder.slot', 'empty_can.0')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
204 self.assert_inventory_item('empty_can.0', False)
536
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
205 self.assert_game_data(
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
206 'contents', set(['tube', 'can']), 'machine.welder.slot')
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
207 self.interact_thing('machine.welder.button')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
208 self.assert_game_data('contents', set(), 'machine.welder.slot')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
209 self.assert_inventory_item('cryo_pipes_two', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
210 self.assert_inventory_item('cryo_pipes_three')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
211
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
212 # Go to the mess.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
213 self.move_to('mess')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
214
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
215 # Replace the tubes.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
216 self.interact_thing('mess.tubes', 'cryo_pipes_three')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
217 self.assert_inventory_item('cryo_pipes_three', False)
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
218 self.assert_game_data('status', 'replaced', 'mess.tubes')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
219
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
220 # Check that life support is replaced
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
221 self.assert_game_data('life support status', 'replaced')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
222
355
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
223 # Tape up the tubes.
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
224 self.interact_thing('mess.tubes', 'duct_tape')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
225 self.assert_game_data('status', 'fixed', 'mess.tubes')
bfb6c682b4fb Updated walkthrough test as far as completed environmental puzzle.
Jeremy Thurgood <firxen@gmail.com>
parents: 254
diff changeset
226
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
227 # Check that life support is fixed
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
228 self.assert_game_data('life support status', 'fixed')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
229
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
230 # Get the detergent bottle.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
231 self.interact_thing('mess.detergent')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
232 self.assert_inventory_item('detergent_bottle')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
233
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
234 # Go to the cryo room.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
235 self.move_to('cryo')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
236
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
237 # Fill the detergent bottle.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
238 self.interact_thing('cryo.pool', 'detergent_bottle')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
239 self.assert_inventory_item('detergent_bottle', False)
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
240 self.assert_inventory_item('full_detergent_bottle')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
241
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
242 # Go to the engine room.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
243 self.move_to('engine')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
244
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
245 # Patch the cracked pipe.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
246 self.assert_game_data('fixed', False, 'engine.cracked_pipe')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
247 self.interact_thing('engine.cracked_pipe', 'duct_tape')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
248 self.assert_game_data('fixed', True, 'engine.cracked_pipe')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
249
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
250 # Fill the cryofluid receptacles.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
251 self.assert_game_data('filled', False, 'engine.cryo_containers')
536
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
252 self.interact_thing(
49b6a3d31ee7 PEP-8 tests.
Jeremy Thurgood <firxen@gmail.com>
parents: 456
diff changeset
253 'engine.cryo_container_receptacle', 'full_detergent_bottle')
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
254 self.assert_game_data('filled', True, 'engine.cryo_containers')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
255 self.assert_inventory_item('full_detergent_bottle', False)
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
256
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
257 # Remove the burned-out superconductor.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
258 self.assert_game_data('present', True, 'engine.superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
259 self.assert_game_data('working', False, 'engine.superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
260 self.interact_thing('engine.superconductor', 'machete')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
261 self.assert_game_data('present', False, 'engine.superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
262 self.assert_game_data('working', False, 'engine.superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
263
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
264 # Tape up new superconductor.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
265 self.interact_item('superconductor', 'duct_tape')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
266 self.assert_inventory_item('superconductor', False)
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
267 self.assert_inventory_item('taped_superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
268
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
269 # Install superconductor.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
270 self.interact_thing('engine.superconductor', 'taped_superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
271 self.assert_inventory_item('taped_superconductor', False)
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
272 self.assert_game_data('present', True, 'engine.superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
273 self.assert_game_data('working', True, 'engine.superconductor')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
274
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
275 # Check that we've fixed the engines.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
276 self.assert_game_data('engine online', True)
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
277
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
278 # Go to the bridge.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
279 self.move_to('bridge')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
280
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
281 # Show JIM the poster.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
282 self.interact_thing('bridge.camera', 'escher_poster')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
283 self.assert_game_data('ai status', 'looping')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
284
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
285 # Get at JIM.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
286 self.assert_game_data('ai panel', 'closed')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
287 self.interact_thing('jim_panel', 'machete')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
288 self.assert_game_data('ai panel', 'open')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
289
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
290 # Break JIM.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
291 self.interact_thing('jim_panel', 'machete')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
292 self.assert_game_data('ai panel', 'broken')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
293
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
294 # Check that we've turned off JIM.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
295 self.assert_game_data('ai status', 'dead')
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
296
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
297 # Bring up nav console.
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
298 self.interact_thing('bridge.comp')
727
657b4da736bc Fix rest of the test suite
Neil Muller <neil@dip.sun.ac.za>
parents: 724
diff changeset
299 self.interact_thing('bridge_comp.nav_tab', detail='bridge_comp_detail')
657b4da736bc Fix rest of the test suite
Neil Muller <neil@dip.sun.ac.za>
parents: 724
diff changeset
300 self.assert_game_data('tab', 'nav', detail='bridge_comp_detail')
452
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
301
fdf3a6dd476b Walkthrough test /almost/ finished.
Jeremy Thurgood <firxen@gmail.com>
parents: 355
diff changeset
302 # Go somewhere interesting.
727
657b4da736bc Fix rest of the test suite
Neil Muller <neil@dip.sun.ac.za>
parents: 724
diff changeset
303 self.interact_thing('bridge_comp.nav_line2', detail='bridge_comp_detail')