aboutsummaryrefslogtreecommitdiff
blob: 97563dc4d4bd561f92a6d5c9399b0adc4c48aad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# vim: set sw=4 sts=4 et :
# Copyright: 2008-2009 Gentoo Foundation
# Author(s): Nirbheek Chauhan <nirbheek.chauhan@gmail.com>
# License: AGPL-3
#
# Immortal lh!
#

sample_maintainer = {
    'username':     'test_user',
    'email':        'test_user_email@test.com',
    'password':     'password',
    'group':        'dev',
}

sample_master_gpg_data = {
    'name':         'AutotuA Master (Sample)',
    'email':        'autotua_master@localhost',
    'expire':       '1m',
    'length':       '1024', # small length because it's a sample anyway
}

sample_slave = {
    'name':         'Sample AutotuA slave',
    'gpg_fp':       '',
    'owner':        sample_maintainer,
    'users':        (sample_maintainer['group'],),
}

sample_slave_gpg_data = {
    'name':         sample_slave['name'],
    'email':        'autotua_slave@localhost',
    'expire':       '1m',
    'length':       '1024', # small length because it's a sample anyway
}

sample_job = {
    'name':         'Sample AutotuA job',
    'maintainer':   sample_maintainer,
    'slave':        sample_slave['name'],
    'provider':     'gentoo',
    # If stage is unspecified, defaults to stage3
    #'stage':        'stage3',
    'arch':         'i686',
    'release':      '2008.0',
    'jobtagerev':   '',
    'atoms':        'bheekling/test-brasero',
}