blob: 6df3223f169586041844bf304acf005818591baf [file] [log] [blame]
/* 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.
*/
#define TESTLUCY_USE_SHORT_NAMES
#include "Lucy/Util/ToolSet.h"
#include "Clownfish/TestHarness/TestBatchRunner.h"
#include "Lucy/Test.h"
#include "Lucy/Test/TestUtils.h"
#include "Lucy/Test/Analysis/TestAnalyzer.h"
#include "Lucy/Analysis/Analyzer.h"
#include "Lucy/Analysis/Inversion.h"
TestAnalyzer*
TestAnalyzer_new() {
return (TestAnalyzer*)Class_Make_Obj(TESTANALYZER);
}
DummyAnalyzer*
DummyAnalyzer_new() {
DummyAnalyzer *self = (DummyAnalyzer*)Class_Make_Obj(DUMMYANALYZER);
return DummyAnalyzer_init(self);
}
DummyAnalyzer*
DummyAnalyzer_init(DummyAnalyzer *self) {
return (DummyAnalyzer*)Analyzer_init((Analyzer*)self);
}
Inversion*
DummyAnalyzer_Transform_IMP(DummyAnalyzer *self, Inversion *inversion) {
UNUSED_VAR(self);
return (Inversion*)INCREF(inversion);
}
static void
test_analysis(TestBatchRunner *runner) {
DummyAnalyzer *analyzer = DummyAnalyzer_new();
String *source = Str_newf("foo bar baz");
Vector *wanted = Vec_new(1);
Vec_Push(wanted, (Obj*)Str_newf("foo bar baz"));
TestUtils_test_analyzer(runner, (Analyzer*)analyzer, source, wanted,
"test basic analysis");
DECREF(wanted);
DECREF(source);
DECREF(analyzer);
}
void
TestAnalyzer_Run_IMP(TestAnalyzer *self, TestBatchRunner *runner) {
TestBatchRunner_Plan(runner, (TestBatch*)self, 3);
test_analysis(runner);
}