File: init_test.sh

package info (click to toggle)
kworkflow 1%3A0.6.2-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,148 kB
  • sloc: sh: 22,233; perl: 2,172; ansic: 96; python: 72; sql: 28; makefile: 19
file content (281 lines) | stat: -rwxr-xr-x 7,607 bytes parent folder | download
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#!/bin/bash

include './src/init.sh'
include './tests/utils.sh'

function oneTimeSetUp()
{
  original_path="$PWD"

  export KW_SOUND_DIR="$PWD/tests/samples/share/sound/kw"
  export HOME="$SHUNIT_TMPDIR"
  export USER="kw_test"
  export KWORKFLOW="kw_dir_test"
  export PWD="$SHUNIT_TMPDIR/$KWORKFLOW"

  export PATH_TO_KW_DIR="$SHUNIT_TMPDIR/$KWORKFLOW/$KW_DIR"
  export PATH_TO_KW_CONFIG="${PATH_TO_KW_DIR}/kworkflow.config"
  export PATH_TO_KW_BUILD_CONFIG="${PATH_TO_KW_DIR}/build.config"
  export PATH_TO_KW_DEPLOY_CONFIG="${PATH_TO_KW_DIR}/deploy.config"
  export PATH_TO_KW_VM_CONFIG="${PATH_TO_KW_DIR}/vm.config"
  export PATH_TO_KW_NOTIFICATON_CONFIG="${PATH_TO_KW_DIR}/notification.config"
}

function setUp()
{
  export KW_ETC_DIR="$PWD/etc"

  mkdir -p "${SHUNIT_TMPDIR}/${KWORKFLOW}"
  options_values=()

  mk_fake_kernel_root "${SHUNIT_TMPDIR}/${KWORKFLOW}/"
  cd "${SHUNIT_TMPDIR}/${KWORKFLOW}/" || {
    fail "($LINENO): It was not possible to move to temporary directory"
    return
  }
}

function tearDown()
{
  [[ -d "$SHUNIT_TMPDIR" ]] && rm -rf "$SHUNIT_TMPDIR"

  cd "$original_path" || {
    fail "($LINENO): It was not possible to move to temporary directory"
    return
  }
}

function test_show_kernel_tree_message()
{
  local output

  # Remove kernel tree
  if [[ -d "${SHUNIT_TMPDIR}/${KWORKFLOW}/" ]]; then
    rm -rf "${SHUNIT_TMPDIR:?}/${KWORKFLOW}/"
  fi

  output=$(printf 'n' | init_kw)
  assertEquals "($LINENO):" 'This command should be run in a kernel tree.' "$output"
}

function test_standard_init_check_variable_replacements()
{
  local output
  local kworkflow_content

  output=$(init_kw)
  kworkflow_content=$(grep "$USER" -o "$PATH_TO_KW_VM_CONFIG" | head -n 1)
  assertEquals "($LINENO): USERKW wasn't updated to $USER" "$USER" "$kworkflow_content"

  kworkflow_content=$(grep "$KW_SOUND_DIR" -o "$PATH_TO_KW_NOTIFICATON_CONFIG" | head -n 1)
  assertEquals "($LINENO): SOUNDPATH wasn't updated to $KW_SOUND_DIR" "$KW_SOUND_DIR" "$kworkflow_content"
}

function test_abort_init_update()
{
  local output
  local expected

  # First, create a config file
  output=$(init_kw)

  expect='Initialization aborted!'
  output=$(printf '%s\n' 'n' | init_kw)
  assertEquals "($LINENO): The init proccess didn't abort correctly" "$expect" "$output"
}

function test_use_arch_parameter()
{
  local output
  local kworkflow_content

  output=$(init_kw --arch arm64)
  kworkflow_content=$(grep arch= "$PATH_TO_KW_BUILD_CONFIG")
  assertEquals "($LINENO):" 'arch=arm64' "$kworkflow_content"
}

function test_try_to_set_an_invalid_arch()
{
  local output
  local kworkflow_content

  declare -a expected_content=(
    'This arch was not found in the arch directory'
    'You can use --force next time if you want to proceed anyway'
    'Available architectures:'
    'arm64'
    'x86_64'
    "Initialized kworkflow directory in $SHUNIT_TMPDIR/$KWORKFLOW/$KW_DIR based on $USER data"
  )

  output=$(init_kw --arch baroque)
  kworkflow_content=$(grep arch= "$PATH_TO_KW_BUILD_CONFIG")
  compare_command_sequence '' "$LINENO" 'expected_content' "$output"
}

function test_force_unsupported_arch()
{
  local output
  local kworkflow_content

  output=$(init_kw --arch baroque --force)
  kworkflow_content=$(grep arch= "$PATH_TO_KW_BUILD_CONFIG")
  assertEquals "($LINENO):" 'arch=baroque' "$kworkflow_content"
}

function test_set_remote()
{
  local output
  local kworkflow_content

  output=$(init_kw --remote juca@123.456.789.123:2222)
  kworkflow_content=$(grep ssh_user= "$PATH_TO_KW_CONFIG")
  assertEquals "($LINENO)" 'ssh_user=juca' "$kworkflow_content"

  kworkflow_content=$(grep ssh_ip= "$PATH_TO_KW_CONFIG")
  assertEquals "($LINENO)" 'ssh_ip=123.456.789.123' "$kworkflow_content"

  kworkflow_content=$(grep ssh_port= "$PATH_TO_KW_CONFIG")
  assertEquals "($LINENO)" 'ssh_port=2222' "$kworkflow_content"
}

function test_try_to_set_wrong_arch()
{
  local output
  local expected_content

  output=$(init_kw --remote ':8888')

  assertEquals "($LINENO)" 22 "$?"
}

function test_set_default_target()
{
  local output
  local kworkflow_content

  output=$(init_kw --target local)
  kworkflow_content=$(grep default_deploy_target= "$PATH_TO_KW_DEPLOY_CONFIG")
  assertEquals "($LINENO)" 'default_deploy_target=local' "$kworkflow_content"
}

function test_set_an_invalid_target()
{
  local output
  local kworkflow_content

  output=$(init_kw --target dartboard | tail -n +1 | head -n 1)
  kworkflow_content=$(grep default_deploy_target= "$PATH_TO_KW_CONFIG")
  assertEquals "($LINENO)" 'Target can only be vm, local or remote.' "$output"
}

function test_force_wrong_etc_path()
{
  local kworkflow_content
  local output

  KW_ETC_DIR='break/on/purpose'

  output=$(init_kw -f) # avoids the overwrite prompt
  ret="$?"
  assertEquals "($LINENO): We forced an error and expected to catch it" 2 "$ret"
}

function test_get_template_name_noniteractive()
{
  options_values['TEMPLATE']=':x86-64'
  get_template_name
  assertEquals "($LINENO)" 'x86-64' "${options_values['TEMPLATE']}"

  options_values['TEMPLATE']=':rpi4-raspbian-64-cross-x86-arm'
  get_template_name

  assertEquals "($LINENO)" 'rpi4-raspbian-64-cross-x86-arm' "${options_values['TEMPLATE']}"
}

function test_get_an_invalid_template_name()
{
  local ret

  options_values['TEMPLATE']=':brasilia-sao-sebastiao'
  get_template_name
  ret="$?"

  assertEquals "($LINENO) We expected an invalid template" 2 "$ret"
}

function test_get_template_interactive()
{
  local output

  options_values['TEMPLATE']=''

  # Only get the final line
  output=$(printf '1\n' | get_template_name 'TEST_MODE' 2>&1 | tail -n 1)
  assertEquals "($LINENO)" 'x86-64' "$output"

  output=$(printf '2\n' | get_template_name 'TEST_MODE' 2>&1 | tail -n 1)
  assertEquals "($LINENO)" 'rpi4-raspbian-64-cross-x86-arm' "$output"
}

function test_config_file_already_exist_question()
{
  mkdir -p "${PWD}/${KW_DIR}"
  touch "${PWD}/${KW_DIR}/kworkflow.config"

  printf 'y\n' | config_file_already_exist_question
  assertFalse "($LINENO): We should not have config file" "[[ -f ${PWD}/${KW_DIR}/kworkflow.config ]]"
}

function test_config_file_already_exist_question_force()
{
  mkdir -p "$PWD/$KW_DIR"
  touch "$PWD/$KW_DIR/kworkflow.config"

  options_values['FORCE']=1

  config_file_already_exist_question
  assertFalse "($LINENO): We should not have config file" "[[ -f $PWD/$KW_DIR/kworkflow.config ]]"
}

function test_parse_init_options()
{
  unset options_values
  declare -gA options_values
  parse_init_options --force
  assertEquals "($LINENO):" 1 "${options_values['FORCE']}"

  unset options_values
  declare -gA options_values
  parse_init_options --arch arm
  assertEquals "($LINENO):" 'arm' "${options_values['ARCH']}"

  unset options_values
  declare -gA options_values
  parse_init_options --not-valid
  assertEquals "($LINENO)" 22 "$?"

  unset options_values
  unset remote_parameters
  declare -gA options_values
  declare -gA remote_parameters
  parse_init_options --remote 'user@127.0.2.1:8888'
  assertEquals "($LINENO):" 'user@127.0.2.1:8888' "${options_values['REMOTE']}"

  unset options_values
  declare -gA options_values
  parse_init_options --target remote
  assertEquals "($LINENO):" 'remote' "${options_values['TARGET']}"

  unset options_values
  declare -gA options_values
  parse_init_options --template='rpi4-raspbian-64-cross-x86-arm'
  assertEquals "($LINENO):" ':rpi4-raspbian-64-cross-x86-arm' "${options_values['TEMPLATE']}"

  unset options_values
  declare -gA options_values
  parse_init_options --template
  assertEquals "($LINENO):" ':' "${options_values['TEMPLATE']}"
}

invoke_shunit