-
Notifications
You must be signed in to change notification settings - Fork 6
/
tests.yaml
78 lines (77 loc) · 1.42 KB
/
tests.yaml
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
schemaVersion: '2.0.0'
commandTests:
- name: 'Imagemagick command'
command: "magick"
args: ["--version"]
expectedOutput: [".*ImageMagick 7.1.*"]
- name: 'rsync command'
command: "rsync"
args: ["--version"]
expectedOutput: ["rsync version 3.*"]
- name: 'Certbot command'
command: "certbot"
args: ["--version"]
expectedOutput: ["certbot 2.*"]
- name: 'Docker command'
command: "docker"
args: ["--version"]
expectedOutput: ["Docker version 26.*"]
- name: 'PHP info'
command: "php"
args: ["-m"]
expectedOutput:
- brotli
- Core
- ctype
- curl
- date
- dom
- fileinfo
- filter
- gd
- hash
- iconv
- imagick
- intl
- json
- libxml
- lz4
- maxminddb
- mbstring
- mysqlnd
- openssl
- opentelemetry
- pcre
- PDO
- pdo_mysql
- pdo_pgsql
- pdo_sqlite
- Phar
- posix
- protobuf
- random
- readline
- redis
- Reflection
- scrypt
- session
- SimpleXML
- snappy
- sockets
- sodium
- SPL
- sqlite3
- standard
- swoole
- tokenizer
- xml
- xmlreader
- xmlwriter
- yaml
- zlib
- zstd
- name: 'PHP intl'
command: "php"
args: ["-r", 'print(\Normalizer::FORM_D);']
expectedOutput:
- "4"