315fa53381636295b5df5c2bbdd54dc0637f6e22
[deliverable/barectf.git] / tests / config / 2 / fail / clock / fail.bats
1 #!/usr/bin/env bats
2
3 # The MIT License (MIT)
4 #
5 # Copyright (c) 2016 Philippe Proulx <pproulx@efficios.com>
6 #
7 # Permission is hereby granted, free of charge, to any person obtaining a copy
8 # of this software and associated documentation files (the "Software"), to deal
9 # in the Software without restriction, including without limitation the rights
10 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 # copies of the Software, and to permit persons to whom the Software is
12 # furnished to do so, subject to the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be included in
15 # all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 # THE SOFTWARE.
24
25 load ../../../common
26
27 @test 'unknown property in clock object makes barectf fail' {
28 barectf_config_check_fail unknown-prop.yaml
29 }
30
31 @test 'wrong "freq" property type in clock object makes barectf fail' {
32 barectf_config_check_fail freq-invalid-type.yaml
33 }
34
35 @test 'invalid "freq" property (0) in clock object makes barectf fail' {
36 barectf_config_check_fail freq-0.yaml
37 }
38
39 @test 'invalid "freq" property (negative) in clock object makes barectf fail' {
40 barectf_config_check_fail freq-neg.yaml
41 }
42
43 @test 'wrong "description" property type in clock object makes barectf fail' {
44 barectf_config_check_fail description-invalid-type.yaml
45 }
46
47 @test 'wrong "uuid" property type in clock object makes barectf fail' {
48 barectf_config_check_fail uuid-invalid-type.yaml
49 }
50
51 @test 'invalid "uuid" property in clock object makes barectf fail' {
52 barectf_config_check_fail uuid-invalid.yaml
53 }
54
55 @test 'wrong "error-cycles" property type in clock object makes barectf fail' {
56 barectf_config_check_fail ec-invalid-type.yaml
57 }
58
59 @test 'invalid "error-cycles" property in clock object makes barectf fail' {
60 barectf_config_check_fail ec-invalid.yaml
61 }
62
63 @test 'wrong "offset" property type in clock object makes barectf fail' {
64 barectf_config_check_fail offset-invalid-type.yaml
65 }
66
67 @test 'wrong "absolute" property type in clock object makes barectf fail' {
68 barectf_config_check_fail absolute-invalid-type.yaml
69 }
70
71 @test 'unknown property in clock offset object makes barectf fail' {
72 barectf_config_check_fail offset-unknown-prop.yaml
73 }
74
75 @test 'wrong "seconds" property type in clock offset object makes barectf fail' {
76 barectf_config_check_fail offset-seconds-invalid-type.yaml
77 }
78
79 @test 'invalid "seconds" property in clock offset object makes barectf fail' {
80 barectf_config_check_fail offset-seconds-neg.yaml
81 }
82
83 @test 'wrong "cycles" property type in clock offset object makes barectf fail' {
84 barectf_config_check_fail offset-cycles-invalid-type.yaml
85 }
86
87 @test 'invalid "cycles" property in clock offset object makes barectf fail' {
88 barectf_config_check_fail offset-cycles-neg.yaml
89 }
90
91 @test 'wrong "$return-ctype" property type in clock object makes barectf fail' {
92 barectf_config_check_fail rct-invalid-type.yaml
93 }
This page took 0.030541 seconds and 3 git commands to generate.