File: faop_optional.test

package info (click to toggle)
tcllib 2.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,560 kB
  • sloc: tcl: 306,798; ansic: 14,272; sh: 3,035; xml: 1,766; yacc: 1,157; pascal: 881; makefile: 124; perl: 84; f90: 84; python: 33; ruby: 13; php: 11
file content (102 lines) | stat: -rw-r--r-- 2,889 bytes parent folder | download | duplicates (10)
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
# -*- tcl -*-
# fa_operations.test:  tests for the FA operations.
#
# Copyright (c) 2004-2007 by Andreas Kupries <andreas_kupries@users.sourceforge.net>
#
# RCS: @(#) $Id: faop_optional.test,v 1.4 2007/04/12 03:43:15 andreas_kupries Exp $

# -------------------------------------------------------------------------

test faop-optional-${setimpl}-1.0 {optional, error} {
    catch {grammar::fa::op::optional} res
    set res
} {wrong # args: should be "grammar::fa::op::optional fa"}


test faop-optional-${setimpl}-1.1 {optional, error} {
    catch {grammar::fa::op::optional a b} res
    set res
} {wrong # args: should be "grammar::fa::op::optional fa"}


test faop-optional-${setimpl}-1.2 {optional, error} {
    catch {grammar::fa::op::optional a} res
    set res
} {invalid command name "a"}


test faop-optional-${setimpl}-1.3 {optional, error} {
    grammar::fa a
    catch {grammar::fa::op::optional a} res
    a destroy
    set res
} {Unable to make a FA without start/final states optional}


test faop-optional-${setimpl}-1.4 {optional, error} {
    grammar::fa a
    a state add x
    a start add x
    catch {grammar::fa::op::optional a} res
    a destroy
    set res
} {Unable to make a FA without start/final states optional}


test faop-optional-${setimpl}-1.5 {optional, error} {
    grammar::fa a
    a state add x
    a final add x
    catch {grammar::fa::op::optional a} res
    a destroy
    set res
} {Unable to make a FA without start/final states optional}


# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


foreach {n code st fin result} {
    00 datom x y
    {grammar::fa @ {x {0 0 {@ y}} y {0 0 {{} f.0}} s.0 {1 0 {{} {x f.0}}} f.0 {0 1 {}}}}

    01 dalt  u z
    {grammar::fa {@ =} {u {0 0 {{} {v w}}} v {0 0 {@ x}} w {0 0 {= y}} x {0 0 {{} z}} y {0 0 {{} z}} z {0 0 {{} f.0}} s.0 {1 0 {{} {u f.0}}} f.0 {0 1 {}}}}

    02 daltb  u z
    {grammar::fa {@ =} {u {0 0 {{} {v w}}} v {0 0 {@ x}} w {0 0 {= y}} x {0 0 {{} z}} y {0 0 {{} z}} z {0 0 {{} {u f.0}}} s.0 {1 0 {{} {u f.0}}} f.0 {0 1 {}}}}

    03 dopt  u x
    {grammar::fa @ {u {0 0 {{} {v x}}} v {0 0 {@ w}} w {0 0 {{} x}} x {0 0 {{} f.0}} s.0 {1 0 {{} {u f.0}}} f.0 {0 1 {}}}}

    04 drep  u x
    {grammar::fa @ {u {0 0 {{} {v x}}} v {0 0 {@ w}} w {0 0 {{} x}} x {0 0 {{} {u f.0}}} s.0 {1 0 {{} {u f.0}}} f.0 {0 1 {}}}}
} {
    set key ${n}.${code}

    test faop-optional-${setimpl}-2.$key {optional} {
	grammar::fa a
	gen $code
	a start add $st
	a final add $fin
	grammar::fa::op::optional a
	set res [validate_serial $result a]
	a destroy
	set res
    } ok

    test faop-optional-${setimpl}-3.$key {optional, as method} {
	grammar::fa a
	gen $code
	a start add $st
	a final add $fin
	a optional
	set res [validate_serial $result a]
	a destroy
	set res
    } ok
}


# -------------------------------------------------------------------------
::tcltest::cleanupTests