mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
151 lines
3.0 KiB
XML
151 lines
3.0 KiB
XML
// Test math functions.
|
|
// Ref: false
|
|
|
|
---
|
|
// Test conversion to numbers.
|
|
#test(int(false), 0)
|
|
#test(int(true), 1)
|
|
#test(int(10), 10)
|
|
#test(int("150"), 150)
|
|
#test(int(10 / 3), 3)
|
|
#test(float(10), 10.0)
|
|
#test(float("31.4e-1"), 3.14)
|
|
#test(type(float(10)), "float")
|
|
|
|
---
|
|
#test(calc.round(calc.e, digits: 2), 2.72)
|
|
#test(calc.round(calc.pi, digits: 2), 3.14)
|
|
|
|
---
|
|
// Error: 6-10 expected boolean, integer, float, or string, found length
|
|
#int(10pt)
|
|
|
|
---
|
|
// Error: 8-13 expected boolean, integer, float, or string, found function
|
|
#float(float)
|
|
|
|
---
|
|
// Error: 6-12 not a valid integer
|
|
#int("nope")
|
|
|
|
---
|
|
// Error: 8-15 not a valid float
|
|
#float("1.2.3")
|
|
|
|
---
|
|
// Test the `abs` function.
|
|
#test(calc.abs(-3), 3)
|
|
#test(calc.abs(3), 3)
|
|
#test(calc.abs(-0.0), 0.0)
|
|
#test(calc.abs(0.0), -0.0)
|
|
#test(calc.abs(-3.14), 3.14)
|
|
#test(calc.abs(50%), 50%)
|
|
#test(calc.abs(-25%), 25%)
|
|
|
|
---
|
|
// Error: 11-22 expected integer, float, length, angle, ratio, or fraction, found string
|
|
#calc.abs("no number")
|
|
|
|
---
|
|
// Test the `even` and `odd` functions.
|
|
#test(calc.even(2), true)
|
|
#test(calc.odd(2), false)
|
|
#test(calc.odd(-1), true)
|
|
#test(calc.even(-11), false)
|
|
|
|
---
|
|
// Test the `mod` function.
|
|
#test(calc.mod(1, 1), 0)
|
|
#test(calc.mod(5, 3), 2)
|
|
#test(calc.mod(5, -3), 2)
|
|
#test(calc.mod(22.5, 10), 2.5)
|
|
#test(calc.mod(9, 4.5), 0)
|
|
|
|
---
|
|
// Error: 14-15 divisor must not be zero
|
|
#calc.mod(5, 0)
|
|
|
|
---
|
|
// Error: 16-19 divisor must not be zero
|
|
#calc.mod(3.0, 0.0)
|
|
|
|
---
|
|
// Test the `min` and `max` functions.
|
|
#test(calc.min(2, -4), -4)
|
|
#test(calc.min(3.5, 1e2, -0.1, 3), -0.1)
|
|
#test(calc.max(-3, 11), 11)
|
|
#test(calc.min("hi"), "hi")
|
|
|
|
---
|
|
// Test the `calc` function.
|
|
#test(calc.pow(10, 0), 1)
|
|
#test(calc.pow(2, 4), 16)
|
|
|
|
---
|
|
// Error: 10-16 zero to the power of zero is undefined
|
|
#calc.pow(0, 0)
|
|
|
|
---
|
|
// Error: 14-31 exponent is too large
|
|
#calc.pow(2, 10000000000000000)
|
|
|
|
---
|
|
// Error: 14-36 exponent may not be infinite, subnormal, or NaN
|
|
#calc.pow(2, calc.pow(2.0, 10000.0))
|
|
|
|
---
|
|
// Error: 15-18 the result is not a real number
|
|
#calc.pow(-1, 0.5)
|
|
|
|
---
|
|
// Error: 12-14 cannot take square root of negative number
|
|
#calc.sqrt(-1)
|
|
|
|
---
|
|
// Error: 11-13 value must be strictly positive
|
|
#calc.log(-1)
|
|
|
|
---
|
|
// Error: 11-12 base may not be zero, NaN, infinite, or subnormal
|
|
#calc.log(1, base: 0)
|
|
|
|
---
|
|
// Error: 11-13 the result is not a real number
|
|
#calc.log(10, base: -1)
|
|
|
|
---
|
|
// Error: 10-12 expected at least one value
|
|
#calc.min()
|
|
|
|
---
|
|
// Error: 14-18 cannot compare integer and string
|
|
#calc.min(1, "hi")
|
|
|
|
---
|
|
// Test the `range` function.
|
|
#test(range(4), (0, 1, 2, 3))
|
|
#test(range(1, 4), (1, 2, 3))
|
|
#test(range(-4, 2), (-4, -3, -2, -1, 0, 1))
|
|
#test(range(10, 5), ())
|
|
#test(range(10, step: 3), (0, 3, 6, 9))
|
|
#test(range(1, 4, step: 1), (1, 2, 3))
|
|
#test(range(1, 8, step: 2), (1, 3, 5, 7))
|
|
#test(range(5, 2, step: -1), (5, 4, 3))
|
|
#test(range(10, 0, step: -3), (10, 7, 4, 1))
|
|
|
|
---
|
|
// Error: 7-9 missing argument: end
|
|
#range()
|
|
|
|
---
|
|
// Error: 11-14 expected integer, found float
|
|
#range(1, 2.0)
|
|
|
|
---
|
|
// Error: 17-22 expected integer, found string
|
|
#range(4, step: "one")
|
|
|
|
---
|
|
// Error: 18-19 number must be positive
|
|
#range(10, step: 0)
|