1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-10-19 17:09:25 +00:00

Flattening is useful, so move it out of the unit test.

This commit is contained in:
King_DuckZ 2016-02-20 01:34:46 +01:00
commit 8b1b9c48f4
2 changed files with 36 additions and 12 deletions

View file

@ -16,6 +16,7 @@
*/
#include "dindexer-machinery/set_listing.hpp"
#include "dindexer-machinery/set_listing_helpers.hpp"
#include "helpers/lengthof.h"
#include <gtest/gtest.h>
#include <vector>
@ -25,17 +26,6 @@
//TEST_F for class
namespace {
void flatten_filelist (const mchlib::SetListingView<true>& parContent, std::vector<std::string>& parOut) {
const auto end = parContent.end();
for (auto itcurr = parContent.cbegin(); itcurr != end; ++itcurr) {
parOut.push_back(itcurr->abs_path);
if (itcurr->is_directory) {
flatten_filelist(mchlib::SetListingView<true>(itcurr), parOut);
}
}
}
} //unnamed namespace
TEST(machinery, diriterator) {
@ -174,8 +164,12 @@ TEST(machinery, diriterator) {
EXPECT_EQ("Cowboy Bebop - Tank - The Best", i->abs_path);
std::vector<std::string> flattened;
auto flattened_ptrs = mchlib::flattened_listing(lst.make_cview());
flattened.reserve(lengthof(expected_list));
flatten_filelist(lst.make_cview(), flattened);
for (const auto itm : flattened_ptrs) {
flattened.push_back(itm->abs_path);
}
EXPECT_EQ(lengthof(expected_list), flattened.size());
const auto count = std::min(lengthof(expected_list), flattened.size());
for (std::size_t z = 0; z < count; ++z) {