about summary refs log blame commit diff stats
path: root/086scenario_console_test.mu
blob: f5aa14383e65dc3788e83446d3cfd2945bc5e5b8 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                    



                                      











                         
# To check our support for consoles in scenarios, rewrite tests from
# scenario_console.mu
# Tests for console interface.

scenario read-key-in-mu [
  assume-console [
    type [abc]
  ]
  run [
    1:char, 2:bool <- read-key console
    3:char, 4:bool <- read-key console
    5:char, 6:bool <- read-key console
    7:char, 8:bool <- read-key console
  ]
  memory-should-contain [
    1 <- 97  # 'a'
    2 <- 1
    3 <- 98  # 'b'
    4 <- 1
    5 <- 99  # 'c'
    6 <- 1
    7 <- 0  # eof
    8 <- 1
  ]
]
phenDict; typedef struct _HyphenState HyphenState; typedef struct _HyphenTrans HyphenTrans; #define MAX_CHARS 100 #define MAX_NAME 20 struct _HyphenDict { /* user options */ char lhmin; /* lefthyphenmin: min. hyph. distance from the left side */ char rhmin; /* righthyphenmin: min. hyph. distance from the right side */ char clhmin; /* min. hyph. distance from the left compound boundary */ char crhmin; /* min. hyph. distance from the right compound boundary */ char * nohyphen; /* comma separated list of characters or character sequences with forbidden hyphenation */ int nohyphenl; /* count of elements in nohyphen */ /* system variables */ int num_states; char cset[MAX_NAME]; int utf8; HyphenState *states; HyphenDict *nextlevel; }; struct _HyphenState { char *match; char *repl; signed char replindex; signed char replcut; int fallback_state; int num_trans; HyphenTrans *trans; }; struct _HyphenTrans { char ch; int new_state; }; HyphenDict *hnj_hyphen_load (const char *fn); HyphenDict *hnj_hyphen_load_file (FILE *f); void hnj_hyphen_free (HyphenDict *dict); /* obsolete, use hnj_hyphen_hyphenate2() or *hyphenate3() functions) */ int hnj_hyphen_hyphenate (HyphenDict *dict, const char *word, int word_size, char *hyphens); /* int hnj_hyphen_hyphenate2(): non-standard hyphenation. (It supports Catalan, Dutch, German, Hungarian, Norwegian, Swedish etc. orthography, see documentation.) input data: word: input word word_size: byte length of the input word hyphens: allocated character buffer (size = word_size + 5) hyphenated_word: allocated character buffer (size ~ word_size * 2) or NULL rep, pos, cut: pointers (point to the allocated and _zeroed_ buffers (size=word_size) or with NULL value) or NULL output data: hyphens: hyphenation vector (hyphenation points signed with odd numbers) hyphenated_word: hyphenated input word (hyphens signed with `='), optional (NULL input) rep: NULL (only standard hyph.), or replacements (hyphenation points signed with `=' in replacements); pos: NULL, or difference of the actual position and the beginning positions of the change in input words; cut: NULL, or counts of the removed characters of the original words at hyphenation, Note: rep, pos, cut are complementary arrays to the hyphens, indexed with the character positions of the input word. For example: Schiffahrt -> Schiff=fahrt, pattern: f1f/ff=f,1,2 output: rep[5]="ff=f", pos[5] = 1, cut[5] = 2 Note: hnj_hyphen_hyphenate2() can allocate rep, pos, cut (word_size length arrays): char ** rep = NULL; int * pos = NULL; int * cut = NULL; char hyphens[MAXWORDLEN]; hnj_hyphen_hyphenate2(dict, "example", 7, hyphens, NULL, &rep, &pos, &cut); See example in the source distribution. */ int hnj_hyphen_hyphenate2 (HyphenDict *dict, const char *word, int word_size, char * hyphens, char *hyphenated_word, char *** rep, int ** pos, int ** cut); /* like hnj_hyphen_hyphenate2, but with hyphenmin parameters */ /* lhmin: lefthyphenmin * rhmin: righthyphenmin * clhmin: compoundlefthyphemin * crhmin: compoundrighthyphenmin * (see documentation) */ int hnj_hyphen_hyphenate3 (HyphenDict *dict, const char *word, int word_size, char * hyphens, char *hyphword, char *** rep, int ** pos, int ** cut, int lhmin, int rhmin, int clhmin, int crhmin); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __HYPHEN_H__ */