Lines Matching full:machine
55 """Generate a machine dictionary with the specified parameters.
57 @param hostname: hostname of machine
61 @return: machine dict with mocked AFE Host object and fake AfeStore.
102 machine = _gen_machine_dict()
104 machine,
113 machine = _gen_machine_dict(labels=['os:foo'])
115 host_obj = factory.create_host(machine)
123 machine = _gen_machine_dict(labels=['os:foo'],
127 host_obj = factory.create_host(machine)
135 machine = _gen_machine_dict()
139 host_obj = factory.create_host(machine)
146 machine = _gen_machine_dict()
147 host_obj = factory.create_host(machine)
154 machine = _gen_machine_dict(hostname='localhost')
155 host_obj = factory.create_host(machine)
163 machine = _gen_machine_dict(hostname='somehost')
164 host_obj = factory.create_host(machine)
172 machine = _gen_machine_dict(hostname='localhost')
173 host_obj = factory.create_host(machine, foo='bar')
188 machine = _gen_machine_dict()
190 host_obj = factory.create_host(machine)
207 machine = _gen_machine_dict(attributes={'ssh_user': 'somebody',
211 host_obj = factory.create_host(machine)