blob: b5055f6bb278a0552785688fd92efdafa3c5481d [file] [log] [blame]
/** @file
A brief file description
@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/TestBox.h"
#include "I_EventSystem.h"
#include "MIME.h"
REGRESSION_TEST(MIME)(RegressionTest *t, int /* atype ATS_UNUSED */, int *pstatus)
{
TestBox box(t, pstatus);
box = REGRESSION_TEST_PASSED;
MIMEField *field;
MIMEHdr hdr;
hdr.create(NULL);
hdr.field_create("Test1", 5);
hdr.field_create("Test2", 5);
hdr.field_create("Test3", 5);
hdr.field_create("Test4", 5);
field = hdr.field_create("Test5", 5);
box.check(hdr.m_mime->m_first_fblock.contains(field), "The field block doesn't contain the field but it should");
box.check(!hdr.m_mime->m_first_fblock.contains(field + (1L << 32)), "The field block contains the field but it shouldn't");
int slot_num = mime_hdr_field_slotnum(hdr.m_mime, field);
box.check(slot_num == 4, "Slot number is %d but should be 4", slot_num);
slot_num = mime_hdr_field_slotnum(hdr.m_mime, field + (1L << 32));
box.check(slot_num == -1, "Slot number is %d but should be -1", slot_num);
hdr.destroy();
}
int
main(int argc, const char **argv)
{
Thread *main_thread = new EThread();
main_thread->set_specific();
mime_init();
return RegressionTest::main(argc, argv, REGRESSION_TEST_QUICK);
}