summaryrefslogtreecommitdiff
path: root/tests.deploy/setup
blob: 5f83747e7a607101ccd02d352115b900b30cfda1 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
#!/bin/bash
#
# Create git repositories for tests. The chunk repository will contain a 
# simple "hello, world" C program, and two branches ("master", "farrokh"), 
# with the master branch containing just a README. The two branches are there
# so that we can test building a branch that hasn't been checked out.
# The branches are different so that we know that if the wrong branch
# is uses, the build will fail.
#
# The stratum repository contains a single branch, "master", with a
# stratum and a system morphology that include the chunk above.
#
# Copyright (C) 2011, 2012, 2013  Codethink Limited
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


set -eu

source "$SRCDIR/scripts/fix-committer-info"

# The $DATADIR should be empty at the beginnig of each test.
find "$DATADIR" -mindepth 1 -delete

# Create an empty directory to be used as a morph workspace
mkdir "$DATADIR/workspace"

# Create chunk repository.

chunkrepo="$DATADIR/chunk-repo"
mkdir "$chunkrepo"
cd "$chunkrepo"
git init --quiet

cat <<EOF > README
This is a sample README.
EOF
git add README
git commit --quiet -m "add README"

git checkout --quiet -b farrokh

cat <<EOF > hello.c
#include <stdio.h>
int main(void)
{
    puts("hello, world");
    return 0;
}
EOF
git add hello.c

cat <<EOF > hello.morph
{
    "name": "hello",
    "kind": "chunk",
    "build-system": "dummy",
    "build-commands": [
        "gcc -o hello hello.c"
    ],
    "install-commands": [
        "install -d \\"\$DESTDIR\\"/etc",
        "install -d \\"\$DESTDIR\\"/bin",
        "install hello \\"\$DESTDIR\\"/bin/hello"
    ]
}
EOF
git add hello.morph

git commit --quiet -m "add a hello world program and morph"

git checkout --quiet master



# Create morph repository.

morphsrepo="$DATADIR/morphs"
mkdir "$morphsrepo"
cd "$morphsrepo"
git init --quiet

cat <<EOF > hello-stratum.morph
{
    "name": "hello-stratum",
    "kind": "stratum",
    "chunks": [
        {
            "name": "hello",
            "repo": "test:chunk-repo",
            "ref": "farrokh",
            "build-depends": [],
            "build-mode": "test"
        }
    ]
}
EOF
git add hello-stratum.morph

cat <<EOF > hello-system.morph
{
    "name": "hello-system",
    "kind": "system",
    "arch": "$(uname -m)",
    "strata": [
        {
            "morph": "hello-stratum",
            "repo": "test:morphs",
            "ref": "master"
        }
    ]
}
EOF
git add hello-system.morph

cat <<EOF > linux-stratum.morph
{
    "name": "linux-stratum",
    "kind": "stratum",
    "build-depends": [
        {
            "morph": "hello-stratum",
            "repo": "test:morphs",
            "ref": "master"
        }
    ],
    "chunks": [
        {
            "name": "linux",
            "repo": "test:kernel-repo",
            "ref": "master",
            "build-depends": [],
            "build-mode": "test"
        }
    ]
}
EOF
git add linux-stratum.morph

cat <<EOF > linux-system.morph
{
    "name": "linux-system",
    "kind": "system",
    "arch": "$(uname -m)",
    "strata": [
        {
            "morph": "hello-stratum",
            "repo": "test:morphs",
            "ref": "master"
        },
        {
            "morph": "linux-stratum",
            "repo": "test:morphs",
            "ref": "master"
        }
    ],
    "configuration-extensions": [
        set-hostname
    ]

}
EOF
git add linux-system.morph


cat <<EOF > rawdisk_test_cluster.morph
name: rawdisk_test_cluster
kind: cluster
systems:
    - morph: linux-system
      deploy:
          linux-system-1:
              type: rawdisk
              location: disk.img
              DISK_SIZE: 1G
EOF
git add rawdisk_test_cluster.morph

cat <<EOF > rawdisk_test_cluster_without_disk_size.morph
name: rawdisk_test_cluster_without_disk_size
kind: cluster
systems:
    - morph: linux-system
      deploy:
          linux-system-1:
              type: rawdisk
              location: disk.img
EOF
git add rawdisk_test_cluster_without_disk_size.morph

cat <<EOF > test_cluster.morph
name: test_cluster
kind: cluster
systems:
    - morph: hello-system
      deploy-defaults:
          type: tar
      deploy:
          hello-system:
              type: rawdisk
              location: hello-system.img
              DISK_SIZE: 1G
    - morph: linux-system
      deploy-defaults:
          HOSTNAME: "baserock-rocks"
      deploy:
          linux-system-1:
              type: tar
              location: linux-system-1.tar
          linux-system-2:
              type: tar
              location: linux-system-2.tar
EOF
git add test_cluster.morph


git commit --quiet -m "add morphs"

# Make a dummy kernel chunk.
mkdir "$DATADIR/kernel-repo"
cat <<EOF > "$DATADIR/kernel-repo/linux.morph"
{
    "name": "linux",
    "kind": "chunk",
    "install-commands": [
        "mkdir -p \"\$DESTDIR/boot\"",
        "touch \"\$DESTDIR\"/extlinux.conf",
        "touch \"\$DESTDIR\"/boot/vmlinuz",
        "touch \"\$DESTDIR\"/boot/System.map"
    ]
}
EOF
"$SRCDIR/scripts/run-git-in" "$DATADIR/kernel-repo" init --quiet
"$SRCDIR/scripts/run-git-in" "$DATADIR/kernel-repo" add .
"$SRCDIR/scripts/run-git-in" "$DATADIR/kernel-repo" commit --quiet -m foo \
    > /dev/null

# Create a morph configuration file.
cat <<EOF > "$DATADIR/morph.conf"
[config]
repo-alias = test=file://$DATADIR/#file://$DATADIR/
cachedir = $DATADIR/cache
log = $DATADIR/morph.log
no-distcc = true
quiet = true
log = /tmp/morph.log
EOF