File: 04-c-style-comments.t

package info (click to toggle)
libsql-tokenizer-perl 0.24-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 176 kB
  • sloc: perl: 103; makefile: 2
file content (198 lines) | stat: -rw-r--r-- 6,974 bytes parent folder | download | duplicates (2)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use strict;
use warnings;

use Test::More;

use SQL::Tokenizer;

use constant SPACE => ' ';
use constant COMMA => ',';
use constant NL    => "\n";

my $query;
my @query;
my @tokenized;

my @tests = (
    {
        description => q{C style comment},
        query       => <<COMPLEX_SQL,
/* drop table */
DROP TABLE test;
/* create table */
CREATE TABLE test (id INT, name VARCHAR);
/* insert data */
INSERT INTO test (id, name) VALUES (1, 't');
INSERT INTO test (id, name) VALUES (2, '''quoted''');
COMPLEX_SQL

        wanted => [
            q{/* drop table */}, NL,
            'DROP',              SPACE,
            'TABLE',             SPACE,
            'test',              ';',
            NL,                  q{/* create table */},
            NL,                  'CREATE',
            SPACE,               'TABLE',
            SPACE,               'test',
            SPACE,               '(',
            'id',                SPACE,
            'INT',               COMMA,
            SPACE,               'name',
            SPACE,               'VARCHAR',
            ')',                 ';',
            NL,                  q{/* insert data */},
            NL,                  'INSERT',
            SPACE,               'INTO',
            SPACE,               'test',
            SPACE,               '(',
            'id',                COMMA,
            SPACE,               'name',
            ')',                 SPACE,
            'VALUES',            SPACE,
            '(',                 '1',
            COMMA,               SPACE,
            q{'t'},              ')',
            ';',                 NL,
            'INSERT',            SPACE,
            'INTO',              SPACE,
            'test',              SPACE,
            '(',                 'id',
            COMMA,               SPACE,
            'name',              ')',
            SPACE,               'VALUES',
            SPACE,               '(',
            '2',                 COMMA,
            SPACE,               q{'''quoted'''},
            ')',                 ';',
            NL,
        ],
    },
    {
        description => q{multi-line C style comment},
        query       => <<COMPLEX_SQL,
/*
    drop table
*/
DROP TABLE test;
/*
    create table
*/
CREATE TABLE test (id INT, name VARCHAR);
/*
    insert data
*/
INSERT INTO test (id, name) VALUES (1, 't');
INSERT INTO test (id, name) VALUES (2, '''quoted''');
COMPLEX_SQL

        wanted => [
            qq{/*\n    drop table\n*/}, NL,
            'DROP',                     SPACE,
            'TABLE',                    SPACE,
            'test',                     ';',
            NL,                         qq{/*\n    create table\n*/},
            NL,                         'CREATE',
            SPACE,                      'TABLE',
            SPACE,                      'test',
            SPACE,                      '(',
            'id',                       SPACE,
            'INT',                      COMMA,
            SPACE,                      'name',
            SPACE,                      'VARCHAR',
            ')',                        ';',
            NL,                         qq{/*\n    insert data\n*/},
            NL,                         'INSERT',
            SPACE,                      'INTO',
            SPACE,                      'test',
            SPACE,                      '(',
            'id',                       COMMA,
            SPACE,                      'name',
            ')',                        SPACE,
            'VALUES',                   SPACE,
            '(',                        '1',
            COMMA,                      SPACE,
            q{'t'},                     ')',
            ';',                        NL,
            'INSERT',                   SPACE,
            'INTO',                     SPACE,
            'test',                     SPACE,
            '(',                        'id',
            COMMA,                      SPACE,
            'name',                     ')',
            SPACE,                      'VALUES',
            SPACE,                      '(',
            '2',                        COMMA,
            SPACE,                      q{'''quoted'''},
            ')',                        ';',
            NL,
        ],
    },
    {
        description => q{multi-line C style comment with CR+LF newline},
        query       => <<COMPLEX_SQL,
/*\r
    drop table\r
*/\r
DROP TABLE test;\r
/*\r
    create table\r
*/\r
CREATE TABLE test (id INT, name VARCHAR);\r
/*\r
    insert data\r
*/\r
INSERT INTO test (id, name) VALUES (1, 't');\r
INSERT INTO test (id, name) VALUES (2, '''quoted''');\r
COMPLEX_SQL

        wanted => [
            qq{/*\r\n    drop table\r\n*/}, NL,
            'DROP',                         SPACE,
            'TABLE',                        SPACE,
            'test',                         ';',
            NL,                             qq{/*\r\n    create table\r\n*/},
            NL,                             'CREATE',
            SPACE,                          'TABLE',
            SPACE,                          'test',
            SPACE,                          '(',
            'id',                           SPACE,
            'INT',                          COMMA,
            SPACE,                          'name',
            SPACE,                          'VARCHAR',
            ')',                            ';',
            NL,                             qq{/*\r\n    insert data\r\n*/},
            NL,                             'INSERT',
            SPACE,                          'INTO',
            SPACE,                          'test',
            SPACE,                          '(',
            'id',                           COMMA,
            SPACE,                          'name',
            ')',                            SPACE,
            'VALUES',                       SPACE,
            '(',                            '1',
            COMMA,                          SPACE,
            q{'t'},                         ')',
            ';',                            NL,
            'INSERT',                       SPACE,
            'INTO',                         SPACE,
            'test',                         SPACE,
            '(',                            'id',
            COMMA,                          SPACE,
            'name',                         ')',
            SPACE,                          'VALUES',
            SPACE,                          '(',
            '2',                            COMMA,
            SPACE,                          q{'''quoted'''},
            ')',                            ';',
            NL,
        ],
    },
);

plan tests => scalar @tests;

foreach my $test (@tests) {
    my @tokenized = SQL::Tokenizer->tokenize( $test->{query} );
    is_deeply( \@tokenized, $test->{wanted}, $test->{description} );
}