summaryrefslogtreecommitdiff
path: root/test/value_checker_test.ml
blob: 169ed86057cfecfdc07db35106b658159667ad9c (plain)
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
open OUnit2
open Value_checker

let validators = Hashtbl.create 256
let () = Hashtbl.add validators "anything" "true";
         Hashtbl.add validators "nothing" "false"

let test_check_regex_valid test_ctxt =
    let c = Regex "[a-z]+" in
    let v = "fgsfds" in
    assert_equal (validate_value validators c v) true

let test_check_regex_invalid test_ctxt =
    let c = Regex "[a-z]+" in
    let v = "FGSFDS" in
    assert_equal (validate_value validators c v) false

let test_check_external_valid test_ctxt =
    let c = External ("anything", "") in
    let v = "fgsfds" in
    assert_equal (validate_value validators c v) true

let test_check_external_invalid test_ctxt =
    let	c = External ("nothing", "") in
    let	v = "fgsfds" in
    assert_equal (validate_value validators c v) false

let test_check_external_bad_validator test_ctxt =
    let c = External ("invalid", "") in
    let v = "fgsfds" in
    assert_raises (Bad_validator "invalid") (fun () -> validate_value validators c v)

let test_validate_any_valid test_ctxt =
    let cs = [Regex "\\d+"; Regex "[a-z]+"; External ("anything", "")] in
    assert_equal (validate_any validators cs "AAAA") true

let test_validate_any_invalid test_ctxt =
    let cs = [Regex "\\d+"; Regex "[a-z]+"] in
    assert_equal (validate_any validators cs "AAAA") false

let test_validate_any_no_constraints test_ctxt =
    let cs = [] in
    assert_equal (validate_any validators cs "foo") true

let suite =
    "VyConf value checker tests" >::: [
        "test_check_regex_valid" >:: test_check_regex_valid;
        "test_check_regex_invalid" >:: test_check_regex_invalid;
        "test_check_external_valid" >:: test_check_external_valid;
        "test_check_external_invalid" >:: test_check_external_invalid;
        "test_check_external_bad_validator" >:: test_check_external_bad_validator;
        "test_validate_any_valid" >:: test_validate_any_valid;
        "test_validate_any_invalid" >:: test_validate_any_invalid;
        "test_validate_any_no_constraints" >:: test_validate_any_no_constraints;
    ]

let () =
  run_test_tt_main suite