annotate gamelib/tests/test_walkthrough.py @ 728:db0762f1de5a pyntnclick

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