blob: 7d7b8b65f940e5242ab62bbf5191b8e15939a7bf [file] [log] [blame]
/*
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "tscore/ink_assert.h"
#include "tscore/ink_defs.h"
#include "tscore/Regex.h"
#include "tscore/TestBox.h"
typedef struct {
char subject[100];
bool match;
} subject_match_t;
typedef struct {
char regex[100];
subject_match_t tests[4];
} test_t;
static const test_t test_data[] = {
{"^foo", {{"foo", true}, {"bar", false}, {"foobar", true}, {"foobarbaz", true}}},
{"foo$", {{"foo", true}, {"bar", false}, {"foobar", false}, {"foobarbaz", false}}},
};
REGRESSION_TEST(Regex_basic)(RegressionTest *t, int /* atype ATS_UNUSED */, int *pstatus)
{
TestBox box(t, pstatus, REGRESSION_TEST_PASSED);
for (unsigned int i = 0; i < countof(test_data); i++) {
Regex r;
rprintf(t, "Regex: %s\n", test_data[i].regex);
r.compile(test_data[i].regex);
for (unsigned int j = 0; j < countof(test_data[i].tests); j++) {
box.check(r.exec(test_data[i].tests[j].subject) == test_data[i].tests[j].match, "Subject: %s Result: %s\n",
test_data[i].tests[j].subject, test_data[i].tests[j].match ? "true" : "false");
}
}
}