blob: 36704ce294de011d666499f068b639b3e7944c15 [file] [log] [blame]
/* $Id$
*
* 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 <gtest/gtest.h>
#include "common/EtchException.h"
#include "common/EtchString.h"
TEST(EtchExceptionTest, createTest) {
EtchString str("test message");
EtchException *test = NULL;
test = new EtchException(str, ETCH_ERROR, EtchException::EXCPTYPE_BUILTIN);
EXPECT_TRUE(test != NULL);
delete test;
}
TEST(EtchExceptionTest, getTests) {
EtchString str("test message");
EtchException *test = NULL;
test = new EtchException(str, ETCH_ERROR, EtchException::EXCPTYPE_BUILTIN);
EXPECT_TRUE(test != NULL);
EXPECT_TRUE(test->getErrorMessage().equals(&str));
EXPECT_TRUE(test->getErrorCode() == ETCH_ERROR);
EXPECT_TRUE(test->getExceptionType() == EtchException::EXCPTYPE_BUILTIN);
delete test;
}
TEST(EtchExceptionTest, equalsTest) {
EtchString str("test message");
EtchString str2("test2 message");
EtchException *test = NULL;
test = new EtchException(str, ETCH_ERROR, EtchException::EXCPTYPE_BUILTIN);
EtchException *test2 = NULL;
test2 = new EtchException(str2, ETCH_EINVAL, EtchException::EXCPTYPE_BUILTIN);
EtchException *test3 = NULL;
test3 = new EtchException(str, ETCH_ERROR, EtchException::EXCPTYPE_BUILTIN);
EXPECT_TRUE(test != NULL);
EXPECT_TRUE(test2 != NULL);
EXPECT_TRUE(test3 != NULL);
EXPECT_TRUE(test->equals(test3));
EXPECT_FALSE(test->equals(test2));
delete test;
delete test2;
delete test3;
}
TEST(EtchExceptionTest, copyTest) {
EtchException o1(EtchString("Message"), ETCH_ERROR, EtchException::EXCPTYPE_BUILTIN);
EtchException o2(o1);
EtchException o3 = o2;
EXPECT_TRUE(o1.equals(&o2));
EXPECT_TRUE(o2.equals(&o3));
}
TEST(EtchExceptionTest, isInstanceOf) {
EtchObject* o1 = new EtchException(EtchString("Message"), ETCH_ERROR, EtchException::EXCPTYPE_BUILTIN);
EXPECT_TRUE(o1->isInstanceOf(EtchObject::TYPE()));
EXPECT_TRUE(o1->isInstanceOf(EtchException::TYPE()));
EXPECT_FALSE(o1->isInstanceOf(EtchString::TYPE()));
delete o1;
}