File: test.liq

package info (click to toggle)
liquidsoap 2.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 11,912 kB
  • sloc: ml: 67,867; javascript: 24,842; ansic: 273; xml: 114; sh: 96; lisp: 96; makefile: 26
file content (251 lines) | stat: -rw-r--r-- 5,305 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
log.level := 4
settings.init.force_start := true

test = ()
let test.done = ref(false)

runtime.gc.set(runtime.gc.get().{space_overhead=20, allocation_policy=2})

# End test successfully.
def test.pass() =
  if
    not test.done()
  then
    test.done := true
    print(
      "Test passed!"
    )
    shutdown()
  end
end

# End test with a failure.
def test.fail(reason=null()) =
  reason =
    if
      null.defined(reason)
    then
      ": #{null.get(reason)}"
    else
      "!"
    end
  print(
    "Test failed#{reason}"
  )
  exit(1)
end

# End test with signal 2
def test.skip() =
  print(
    "Test skipped.."
  )
  exit(123)
end

# Check that files are never repeated in source s, possibly by rounds. The
# function triggers test.fail on repeated filenames, only clearing its list of
# seen filenames once all nb_files have been seen.
def test.check_non_repeating(~nb_files, ~nb_rounds, s) =
  # List of seen filenames
  seen = ref([])

  # Number of rounds to test
  iterations = ref(0)

  def already(fname) =
    list.assoc(default=false, fname, seen())
  end

  def check(m) =
    fname = m["filename"]
    print(
      "I: Playing #{fname}"
    )
    if
      iterations() < nb_rounds and already(fname)
    then
      print(
        "I: Already seen #{fname}"
      )
      test.fail()
    else
      if
        list.length(seen()) < nb_files - 1
      then
        seen := list.add((fname, true), seen())
      else
        print(
          "I: ==="
        )
        seen := []
        iterations := iterations() + 1
        if
          iterations() == nb_rounds
        then
          print(
            "I: Test passed"
          )
          test.pass()
        end
      end
    end
  end

  s.on_track(check)
  s
end

def test.equal(v, v') =
  if
    # We compare strings for methods and plain object for type.
    v != v' or "#{v}" != "#{v'}"
  then
    msg =
      "expected:\r\n#{string.quote(string(v'))}\r\ngot:\r\n#{
        string.quote(string(v))
      }"
    print(msg)

    thread.run({test.fail()})

    error.raise(error.failure, msg)
  end
end

let test.not = ()

def test.not.equal(first, second) =
  if
    first == second or "#{first}" == "#{second}"
  then
    msg =
      "expected\r\n
      #{string.quote(string(first))}\r\nto differ from:\r\n#{
        string.quote(string(second))
      }"

    print(msg)

    thread.run({test.fail()})

    error.raise(error.failure, msg)
  end
end

# Compares two float values for approximate equality.
# Values are considered almost equal if their difference
# is within 10^-digits.
# @param ~digits The number of decimal digits to compare. Default is 7.
# @flag hidden
def test._almost_equal(~digits=7, first, second) =
  diff = abs(float(first) - float(second))
  if
    diff * float(pow(10, digits)) < 0.5
  then
    true.{diff=diff}
  else
    false.{diff=diff}
  end
end

# Compares two float values for approximate equality.
# Values are considered almost equal if their difference
# is within 10^-digits.
# @param ~digits The number of decimal digits to compare. Default is 7.
def test.almost_equal(~digits=7, first, second) =
  is_almost_equal = test._almost_equal(digits=digits, first, second)
  if
    not is_almost_equal
  then
    thread.run({test.fail()})

    error.raise(
      error.failure,
      "#{string.quote(string(first))} != #{
        string.quote(string(second))
      }
       up to #{digits} digits, diff = #{is_almost_equal.diff}."
    )
  end
end

# Compares two float values for approximate inequality.
# Values are considered not almost equal if their difference
# is greater than 10^-digits.
# @param ~digits The number of decimal digits to compare. Default is 7.
def test.not_almost_equal(~digits=7, first, second) =
  is_almost_equal = test._almost_equal(digits=digits, first, second)
  if
    is_almost_equal
  then
    thread.run({test.fail()})

    error.raise(
      error.failure,
      "#{string.quote(string(first))} == #{
        string.quote(string(second))
      }
       up to #{digits} digits, diff = #{is_almost_equal.diff}."
    )
  end
end

def test.raises(fn, e=null()) =
  try
    ignore(fn())
    error.raise(
      error.failure,
      "Exception #{e} was not raised!"
    )
  catch exn do
    if
      null.defined(e)
    then
      e = null.get(e)
      if
        exn.kind != e.kind
      then
        error.raise(
          error.failure,
          "An exception #{exn} of kind #{exn.kind} was raised instead of an \
           error of kind #{e.kind}."
        )
      end
    end

    ()
  end
end

# Asynchronous test handler with dummy output
# Best practice is to run all manual tests
# through this one.
def test.check(f) =
  thread.run(delay=0.1, f)
end

# Add a metric
def test.metric(~category, ~name, ~value, ~unit, ~min=null()) =
  min =
    null.defined(min)
    ?
      "\n  min: #{(null.get(min) : float)}"
    : ""
  data =
    "- name: \"#{(name : string)}\"\n  category: \"#{(category : string)}\"\n  \
     value: #{(value : float)}\n  unit: \"#{(unit : string)}\"\n  time: #{
      (time() : float)
    }#{min}\n\n"

  file.write(append=true, data=data, "/tmp/metrics.yaml")
end

def on_error(~backtrace, error) =
  print(
    "Uncaught error while running test: #{error}\n#{backtrace}"
  )
  test.fail()
end

thread.on_error(null(), on_error)