src/Pure/ProofGeneral/pgip_tests.ML
author wenzelm
Wed, 27 Aug 2008 12:00:28 +0200
changeset 28020 1ff5167592ba
parent 26541 14b268974c4b
child 29606 fedb8be05f24
permissions -rw-r--r--
get rid of tabs;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     1
(*  Title:      Pure/ProofGeneral/pgip_tests.ML
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     2
    ID:         $Id$
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     3
    Author:     David Aspinall
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     4
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     5
A test suite for the PGIP abstraction code (in progress).
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21867
diff changeset
     6
Run to provide some mild insurance against breakage in Isabelle here.
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     7
*)
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     8
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
     9
(** pgip_types.ML **)
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    10
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    11
local
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    12
fun asseq_p toS a b =
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    13
    if a=b then ()
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    14
    else error("PGIP test: expected these two values to be equal:\n" ^
28020
1ff5167592ba get rid of tabs;
wenzelm
parents: 26541
diff changeset
    15
               (toS a) ^"\n and: \n" ^ (toS b))
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    16
26541
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    17
val asseqx = asseq_p XML.string_of
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    18
val asseqs = asseq_p I
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    19
val asseqb = asseq_p (fn b=>if b then "true" else "false")
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    20
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    21
open PgipTypes;
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    22
in
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    23
26541
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    24
val _ = asseqx (pgiptype_to_xml Pgipnull) (XML.parse "<pgipnull/>");
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    25
val _ = asseqx (pgiptype_to_xml Pgipbool) (XML.parse "<pgipbool/>");
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    26
val _ = asseqx (pgiptype_to_xml (Pgipint (NONE,NONE))) (XML.parse "<pgipint/>");
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    27
val _ = asseqx (pgiptype_to_xml (Pgipint (SOME 5,SOME 7))) (XML.parse "<pgipint min='5' max='7'/>");
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    28
val _ = asseqx (pgiptype_to_xml (Pgipint (NONE,SOME 7))) (XML.parse "<pgipint max='7'/>");
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    29
val _ = asseqx (pgiptype_to_xml (Pgipint (SOME ~5,NONE))) (XML.parse "<pgipint min='-5'/>");
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    30
val _ = asseqx (pgiptype_to_xml Pgipstring) (XML.parse "<pgipstring/>");
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    31
val _ = asseqx (pgiptype_to_xml (Pgipconst "radio1"))  (XML.parse "<pgipconst name='radio1'/>");
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    32
val _ = asseqx (pgiptype_to_xml (Pgipchoice [Pgipdtype (SOME "the best choice",Pgipbool)]))
26541
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    33
       (XML.parse "<pgipchoice><pgipbool descr='the best choice'/></pgipchoice>");
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    34
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    35
val _ = asseqs (pgval_to_string (read_pgval Pgipbool "true")) "true";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    36
val _ = asseqs (pgval_to_string (read_pgval Pgipbool "false")) "false";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    37
val _ = asseqs (pgval_to_string (read_pgval (Pgipint(NONE,NONE)) "-37")) "-37";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    38
val _ = asseqs (pgval_to_string (read_pgval Pgipnat "45")) "45";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    39
val _ = asseqs (pgval_to_string (read_pgval Pgipstring "stringvalue")) "stringvalue";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    40
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    41
local
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    42
    val choices = Pgipchoice [Pgipdtype (NONE,Pgipbool), Pgipdtype (NONE,Pgipnat), 
28020
1ff5167592ba get rid of tabs;
wenzelm
parents: 26541
diff changeset
    43
                              Pgipdtype (NONE,Pgipnull), Pgipdtype (NONE,Pgipconst "foo")]
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    44
in
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    45
val _ = asseqs (pgval_to_string (read_pgval choices "45")) "45";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    46
val _ = asseqs (pgval_to_string (read_pgval choices "foo")) "foo";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    47
val _ = asseqs (pgval_to_string (read_pgval choices "true")) "true";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    48
val _ = asseqs (pgval_to_string (read_pgval choices "")) "";
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    49
val _ = (asseqs (pgval_to_string (read_pgval choices "-37")) "-37"; 
28020
1ff5167592ba get rid of tabs;
wenzelm
parents: 26541
diff changeset
    50
         error "pgip_tests: should fail") handle PGIP _ => ()
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    51
end
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    52
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    53
val _ = asseqx (haspref {name="provewithgusto",descr=SOME "use energetic proofs",
28020
1ff5167592ba get rid of tabs;
wenzelm
parents: 26541
diff changeset
    54
                 default=SOME "true", pgiptype=Pgipbool})
26541
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    55
       (XML.parse "<haspref name='provewithgusto' descr='use energetic proofs' default='true'><pgipbool/></haspref>");
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    56
end
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    57
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    58
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    59
(** pgip_input.ML **)
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    60
local
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    61
26541
14b268974c4b XML.string_of, XML.parse;
wenzelm
parents: 25275
diff changeset
    62
fun e str = case XML.parse str of 
28020
1ff5167592ba get rid of tabs;
wenzelm
parents: 26541
diff changeset
    63
                (XML.Elem args) => args
1ff5167592ba get rid of tabs;
wenzelm
parents: 26541
diff changeset
    64
              | _ => error("Expected to get an XML Element")
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    65
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    66
open PgipInput;
22164
ac1bae165ad8 Test askref
aspinall
parents: 22083
diff changeset
    67
open PgipTypes;
22407
6e52564bcb53 Update test for new parse result
aspinall
parents: 22164
diff changeset
    68
open PgipIsabelle;
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    69
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    70
fun asseqi a b =
21940
fbd068dd4d29 minor tuning;
wenzelm
parents: 21867
diff changeset
    71
    if input (e a) = b then ()
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    72
    else error("PGIP test: expected two inputs to be equal, for input:\n" ^ a)
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    73
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    74
in
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    75
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    76
val _ = asseqi "<askpgip/>" (SOME (Askpgip()));
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    77
val _ = asseqi "<askpgml/>" (SOME (Askpgml()));
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    78
val _ = asseqi "<askconfig/>" (SOME (Askconfig()));
23436
343e84195e2c Remove dedicated flag setting elements in favour of setproverflag.
aspinall
parents: 22407
diff changeset
    79
(* FIXME: new tests:
22083
4bfd987b005c Fix pgmlsymbolsoff
aspinall
parents: 21940
diff changeset
    80
val _ = asseqi "<pgmlsymbolson/>" (SOME (Pgmlsymbolson()));
4bfd987b005c Fix pgmlsymbolsoff
aspinall
parents: 21940
diff changeset
    81
val _ = asseqi "<pgmlsymbolsoff/>" (SOME (Pgmlsymbolsoff()));
4bfd987b005c Fix pgmlsymbolsoff
aspinall
parents: 21940
diff changeset
    82
val _ = asseqi "<startquiet/>" (SOME (Startquiet()));
4bfd987b005c Fix pgmlsymbolsoff
aspinall
parents: 21940
diff changeset
    83
val _ = asseqi "<stopquiet/>" (SOME (Stopquiet()));
23436
343e84195e2c Remove dedicated flag setting elements in favour of setproverflag.
aspinall
parents: 22407
diff changeset
    84
*)
22164
ac1bae165ad8 Test askref
aspinall
parents: 22083
diff changeset
    85
val _ = asseqi "<askrefs thyname='foo' objtype='theory'/>" (SOME (Askrefs {url=NONE, thyname=SOME "foo",
28020
1ff5167592ba get rid of tabs;
wenzelm
parents: 26541
diff changeset
    86
                                                                          objtype=SOME ObjTheory,name=NONE}));
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    87
val _ = asseqi "<otherelt/>" NONE;
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    88
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    89
end
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    90
21867
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    91
(** pgip_markup.ML **)
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    92
local
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    93
open PgipMarkup
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    94
in
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    95
val _ = ()
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    96
end
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    97
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
    98
21637
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
    99
(** pgip_output.ML **)
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
   100
local
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
   101
open PgipOutput
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
   102
in
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
   103
val _ = ()
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
   104
end
a7b156c404e2 Revamped Proof General interface.
aspinall
parents:
diff changeset
   105
21867
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   106
25275
76d7f3fd4fb3 removed obsolete ProofGeneral/parsing.ML;
wenzelm
parents: 24192
diff changeset
   107
(** pgip_parser.ML **)
21867
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   108
local
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   109
open PgipMarkup
25275
76d7f3fd4fb3 removed obsolete ProofGeneral/parsing.ML;
wenzelm
parents: 24192
diff changeset
   110
open PgipParser
22407
6e52564bcb53 Update test for new parse result
aspinall
parents: 22164
diff changeset
   111
open PgipIsabelle
6e52564bcb53 Update test for new parse result
aspinall
parents: 22164
diff changeset
   112
21867
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   113
fun asseqp a b =
25275
76d7f3fd4fb3 removed obsolete ProofGeneral/parsing.ML;
wenzelm
parents: 24192
diff changeset
   114
    if pgip_parser Position.none a = b then ()
21867
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   115
    else error("PGIP test: expected two parses to be equal, for input:\n" ^ a)
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   116
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   117
in
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   118
val _ = 
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   119
    asseqp "theory A imports Bthy Cthy Dthy begin"
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   120
    [Opentheory
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   121
         {text = "theory A imports Bthy Cthy Dthy begin",
24192
4eccd4bb8b64 PGIP change: thyname is optional in opentheory, markup even in case of header parse failure
aspinall
parents: 23798
diff changeset
   122
          thyname = SOME "A",
22407
6e52564bcb53 Update test for new parse result
aspinall
parents: 22164
diff changeset
   123
          parentnames = ["Bthy", "Cthy", "Dthy"]},
6e52564bcb53 Update test for new parse result
aspinall
parents: 22164
diff changeset
   124
     Openblock {metavarid=NONE,name=NONE,objtype=SOME ObjTheoryBody}];
21867
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   125
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   126
val _ = 
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   127
    asseqp "end" 
22407
6e52564bcb53 Update test for new parse result
aspinall
parents: 22164
diff changeset
   128
   [Closeblock {}, Closetheory {text = "end"}];
21867
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   129
8750fbc28d5c Add abstraction for objtypes and documents.
aspinall
parents: 21637
diff changeset
   130
end