efl/src/tests/eina_cxx/eina_cxx_test_iterator.cc

82 lines
2.1 KiB
C++

/*
* Copyright 2019 by its authors. See AUTHORS.
*
* Licensed 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.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eina.hh>
#include <Eo.hh>
#include <algorithm>
#include "eina_cxx_suite.h"
#include "eina_simple.eo.hh"
EFL_START_TEST(eina_cxx_iterator_equal)
{
efl::eina::eina_init eina_init;
efl::eina::ptr_list<int> list;
ck_assert(list.size() == 0);
ck_assert(list.empty());
list.push_back(new int(5));
list.push_back(new int(10));
list.push_back(new int(15));
list.push_back(new int(20));
efl::eina::iterator<int> iterator = list.ibegin()
, last_iterator = list.iend();
int result[] = {5, 10, 15, 20};
ck_assert(std::equal(iterator, last_iterator, result));
}
EFL_END_TEST
EFL_START_TEST(eina_cxx_eo_iterator_equal)
{
efl::eina::eina_init eina_init;
efl::eo::eo_init eo_init;
efl::eina::list<nonamespace::Eina_Simple> list;
nonamespace::Eina_Simple const w1(efl::eo::instantiate);
nonamespace::Eina_Simple const w2(efl::eo::instantiate);
nonamespace::Eina_Simple const w3(efl::eo::instantiate);
nonamespace::Eina_Simple const w4(efl::eo::instantiate);
list.push_back(w1);
list.push_back(w2);
list.push_back(w3);
list.push_back(w4);
efl::eina::iterator<nonamespace::Eina_Simple> iterator = list.ibegin()
, last_iterator = list.iend();
nonamespace::Eina_Simple const result[] = {w1, w2, w3, w4};
ck_assert(std::equal(iterator, last_iterator, result));
}
EFL_END_TEST
void
eina_test_iterator(TCase *tc)
{
tcase_add_test(tc, eina_cxx_iterator_equal);
tcase_add_test(tc, eina_cxx_eo_iterator_equal);
}