Skip to content

Commit 74937c8

Browse files
committed
This fixes #215
State instances passed to `initial` parameter of `Machine` constructor had not been processed properly
1 parent 23e2b29 commit 74937c8

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Bug #214: `LockedMachine` as a model prevented correct addition of `on_enter/exit_<state>` (thanks to @kr2)
66
- Bug #217: Filtering rules for auto transitions in graphs falsely filtered certain transitions (thanks to @KarolOlko)
77
- Bug #218: Uninitialized `EventData.transition` caused `AttributeError` in `EventData.__repr__` (thanks to @kunalbhagawati)
8+
- Bug #215: State instances passed to `initial` parameter of `Machine` constructor had not been processed properly (thanks @mathiasimmer)
89

910
## 0.5.2 (April, 2017)
1011

tests/test_core.py

+4
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ def test_pass_state_instances_instead_of_names(self):
113113
state_B2 = State('B', on_enter='this_passes')
114114
with self.assertRaises(ValueError):
115115
m.add_transition('advance2', state_A, state_B2)
116+
m2 = Machine(states=states, initial=state_A.name)
117+
assert m.initial == m2.initial
118+
with self.assertRaises(ValueError):
119+
Machine(states=states, initial=State('A'))
116120

117121
def test_conditions(self):
118122
s = self.stuff

transitions/core.py

+12-4
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def __init__(self, model='self', states=None, initial='initial', transitions=Non
357357
states (list): A list of valid states. Each element can be either a
358358
string or a State instance. If string, a new generic State
359359
instance will be created that has the same name as the string.
360-
initial (string): The initial state of the Machine.
360+
initial (string or State): The initial state of the Machine.
361361
transitions (list): An optional list of transitions. Each element
362362
is a dictionary of named arguments to be passed onto the
363363
Transition initializer.
@@ -408,6 +408,7 @@ def __init__(self, model='self', states=None, initial='initial', transitions=Non
408408
self._after_state_change = []
409409
self._prepare_event = []
410410
self._finalize_event = []
411+
self._initial = None
411412

412413
self.states = OrderedDict()
413414
self.events = {}
@@ -447,9 +448,16 @@ def __init__(self, model='self', states=None, initial='initial', transitions=Non
447448
self.add_states(states)
448449

449450
if initial is not None:
450-
if initial not in self.states:
451-
self.add_states(initial)
452-
self._initial = initial
451+
if isinstance(initial, State):
452+
if initial.name not in self.states:
453+
self.add_state(initial)
454+
else:
455+
assert self._has_state(initial)
456+
self._initial = initial.name
457+
else:
458+
if initial not in self.states:
459+
self.add_state(initial)
460+
self._initial = initial
453461

454462
if transitions is not None:
455463
transitions = listify(transitions)

0 commit comments

Comments
 (0)