blob: a207997b1efc9a5b11463818b0dc29fddca53272 [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 C_TESTLUCY_TESTBLOBTYPE
#define TESTLUCY_USE_SHORT_NAMES
#include "Lucy/Util/ToolSet.h"
#include "Clownfish/TestHarness/TestBatchRunner.h"
#include "Lucy/Test.h"
#include "Lucy/Test/Plan/TestBlobType.h"
#include "Lucy/Test/TestUtils.h"
#include "Lucy/Plan/BlobType.h"
#include "Lucy/Util/Freezer.h"
TestBlobType*
TestBlobType_new() {
return (TestBlobType*)Class_Make_Obj(TESTBLOBTYPE);
}
static void
test_Dump_Load_and_Equals(TestBatchRunner *runner) {
BlobType *type = BlobType_new(true);
Obj *dump = (Obj*)BlobType_Dump(type);
Obj *clone = Freezer_load(dump);
Obj *another_dump = (Obj*)BlobType_Dump_For_Schema(type);
BlobType *another_clone = BlobType_Load(type, another_dump);
TEST_TRUE(runner, BlobType_Equals(type, (Obj*)clone),
"Dump => Load round trip");
TEST_TRUE(runner, BlobType_Equals(type, (Obj*)another_clone),
"Dump_For_Schema => Load round trip");
DECREF(type);
DECREF(dump);
DECREF(clone);
DECREF(another_dump);
DECREF(another_clone);
}
void
TestBlobType_Run_IMP(TestBlobType *self, TestBatchRunner *runner) {
TestBatchRunner_Plan(runner, (TestBatch*)self, 2);
test_Dump_Load_and_Equals(runner);
}