mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Unit Tests - list.t
- Added listIntersect and a Boolean listDiff implementation in main.h. - Added a set of unit tests for the above.
This commit is contained in:
parent
42981c746e
commit
75e738a9c9
4 changed files with 144 additions and 1 deletions
31
src/main.h
31
src/main.h
|
@ -124,6 +124,19 @@ std::string colorizeDebug (const std::string&);
|
||||||
int handleImport (std::string&);
|
int handleImport (std::string&);
|
||||||
|
|
||||||
// list template
|
// list template
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
template <class T> bool listDiff (const T& left, const T& right)
|
||||||
|
{
|
||||||
|
if (left.size () != right.size ())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
for (unsigned int i = 0; i < left.size (); ++i)
|
||||||
|
if (left[i] != right[i])
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
template <class T> void listDiff (
|
template <class T> void listDiff (
|
||||||
const T& left, const T& right, T& leftOnly, T& rightOnly)
|
const T& left, const T& right, T& leftOnly, T& rightOnly)
|
||||||
|
@ -164,5 +177,23 @@ template <class T> void listDiff (
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
template <class T> void listIntersect (const T& left, const T& right, T& join)
|
||||||
|
{
|
||||||
|
join.clear ();
|
||||||
|
|
||||||
|
for (unsigned int l = 0; l < left.size (); ++l)
|
||||||
|
{
|
||||||
|
for (unsigned int r = 0; r < right.size (); ++r)
|
||||||
|
{
|
||||||
|
if (left[l] == right[r])
|
||||||
|
{
|
||||||
|
join.push_back (left[l]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
1
src/tests/.gitignore
vendored
1
src/tests/.gitignore
vendored
|
@ -16,4 +16,5 @@ cmd.t
|
||||||
config.t
|
config.t
|
||||||
util.t
|
util.t
|
||||||
color.t
|
color.t
|
||||||
|
list.t
|
||||||
*.log
|
*.log
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t text.t autocomplete.t \
|
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t text.t autocomplete.t \
|
||||||
config.t seq.t att.t stringtable.t record.t nibbler.t subst.t filt.t \
|
config.t seq.t att.t stringtable.t record.t nibbler.t subst.t filt.t \
|
||||||
cmd.t util.t color.t
|
cmd.t util.t color.t list.t
|
||||||
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti
|
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti
|
||||||
LFLAGS = -L/usr/local/lib -lncurses
|
LFLAGS = -L/usr/local/lib -lncurses
|
||||||
OBJECTS = ../TDB.o ../Task.o ../text.o ../Date.o ../Table.o ../Duration.o \
|
OBJECTS = ../TDB.o ../Task.o ../text.o ../Date.o ../Table.o ../Duration.o \
|
||||||
|
@ -78,3 +78,6 @@ util.t: util.t.o $(OBJECTS) test.o
|
||||||
color.t: color.t.o $(OBJECTS) test.o
|
color.t: color.t.o $(OBJECTS) test.o
|
||||||
g++ color.t.o $(OBJECTS) test.o $(LFLAGS) -o color.t
|
g++ color.t.o $(OBJECTS) test.o $(LFLAGS) -o color.t
|
||||||
|
|
||||||
|
list.t: list.t.o $(OBJECTS) test.o
|
||||||
|
g++ list.t.o $(OBJECTS) test.o $(LFLAGS) -o list.t
|
||||||
|
|
||||||
|
|
108
src/tests/list.t.cpp
Normal file
108
src/tests/list.t.cpp
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Copyright 2008, Paul Beckingham. All rights reserved.
|
||||||
|
//
|
||||||
|
//
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
#include <iostream>
|
||||||
|
#include "Context.h"
|
||||||
|
#include "main.h"
|
||||||
|
#include "test.h"
|
||||||
|
|
||||||
|
Context context;
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
int main (int argc, char** argv)
|
||||||
|
{
|
||||||
|
UnitTest t (24);
|
||||||
|
|
||||||
|
// 1,2,3 <=> 2,3,4
|
||||||
|
std::vector <std::string> string_one;
|
||||||
|
string_one.push_back ("1");
|
||||||
|
string_one.push_back ("2");
|
||||||
|
string_one.push_back ("3");
|
||||||
|
|
||||||
|
std::vector <std::string> string_two;
|
||||||
|
string_two.push_back ("2");
|
||||||
|
string_two.push_back ("3");
|
||||||
|
string_two.push_back ("4");
|
||||||
|
|
||||||
|
std::vector <std::string> string_three;
|
||||||
|
string_three.push_back ("2");
|
||||||
|
string_three.push_back ("3");
|
||||||
|
string_three.push_back ("4");
|
||||||
|
|
||||||
|
std::vector <std::string> string_four;
|
||||||
|
|
||||||
|
// Differences?
|
||||||
|
t.ok (!listDiff (string_one, string_one), "std::string (1,2,3) == (1,2,3)");
|
||||||
|
t.ok (listDiff (string_one, string_two), "std::string (1,2,3) != (2,3,4)");
|
||||||
|
t.ok (listDiff (string_one, string_three), "std::string (1,2,3) != (2,3,4)");
|
||||||
|
t.ok (listDiff (string_one, string_four), "std::string (1,2,3) != ()");
|
||||||
|
t.ok (!listDiff (string_four, string_four), "std::string () == ()");
|
||||||
|
|
||||||
|
// What are the differences?
|
||||||
|
std::vector<std::string> string_leftOnly;
|
||||||
|
std::vector<std::string> string_rightOnly;
|
||||||
|
listDiff (string_one, string_two, string_leftOnly, string_rightOnly);
|
||||||
|
t.is ((int) string_leftOnly.size (), 1, "std::string (1,2,3) <=> (2,3,4) = 1<-");
|
||||||
|
t.is (string_leftOnly[0], "1", "std::string (1,2,3) <=> (2,3,4) = 1<-");
|
||||||
|
|
||||||
|
t.is ((int) string_rightOnly.size (), 1, "std::string (1,2,3) <=> (2,3,4) = ->4");
|
||||||
|
t.is (string_rightOnly[0], "4", "std::string (1,2,3) <=> (2,3,4) = ->4");
|
||||||
|
|
||||||
|
// What is the intersection?
|
||||||
|
std::vector <std::string> string_join;
|
||||||
|
listIntersect (string_one, string_two, string_join);
|
||||||
|
t.is ((int) string_join.size (), 2, "std::string (1,2,3) intersect (2,3,4) = (2,3)");
|
||||||
|
t.is (string_join[0], "2", "std::string (1,2,3) intersect (2,3,4) = (2,3)");
|
||||||
|
t.is (string_join[1], "3", "std::string (1,2,3) intersect (2,3,4) = (2,3)");
|
||||||
|
|
||||||
|
// Now do it all again, with integers.
|
||||||
|
|
||||||
|
// 1,2,3 <=> 2,3,4
|
||||||
|
std::vector <int> int_one;
|
||||||
|
int_one.push_back (1);
|
||||||
|
int_one.push_back (2);
|
||||||
|
int_one.push_back (3);
|
||||||
|
|
||||||
|
std::vector <int> int_two;
|
||||||
|
int_two.push_back (2);
|
||||||
|
int_two.push_back (3);
|
||||||
|
int_two.push_back (4);
|
||||||
|
|
||||||
|
std::vector <int> int_three;
|
||||||
|
int_three.push_back (2);
|
||||||
|
int_three.push_back (3);
|
||||||
|
int_three.push_back (4);
|
||||||
|
|
||||||
|
std::vector <int> int_four;
|
||||||
|
|
||||||
|
// Differences?
|
||||||
|
t.ok (!listDiff (int_one, int_one), "int (1,2,3) == (1,2,3)");
|
||||||
|
t.ok (listDiff (int_one, int_two), "int (1,2,3) != (2,3,4)");
|
||||||
|
t.ok (listDiff (int_one, int_three), "int (1,2,3) != (2,3,4)");
|
||||||
|
t.ok (listDiff (int_one, int_four), "int (1,2,3) != ()");
|
||||||
|
t.ok (!listDiff (int_four, int_four), "int () == ()");
|
||||||
|
|
||||||
|
// What are the differences?
|
||||||
|
std::vector<int> int_leftOnly;
|
||||||
|
std::vector<int> int_rightOnly;
|
||||||
|
listDiff (int_one, int_two, int_leftOnly, int_rightOnly);
|
||||||
|
t.is ((int) int_leftOnly.size (), 1, "int (1,2,3) <=> (2,3,4) = 1<-");
|
||||||
|
t.is (int_leftOnly[0], "1", "int (1,2,3) <=> (2,3,4) = 1<-");
|
||||||
|
|
||||||
|
t.is ((int) int_rightOnly.size (), 1, "int (1,2,3) <=> (2,3,4) = ->4");
|
||||||
|
t.is (int_rightOnly[0], "4", "int (1,2,3) <=> (2,3,4) = ->4");
|
||||||
|
|
||||||
|
// What is the intersection?
|
||||||
|
std::vector <int> int_join;
|
||||||
|
listIntersect (int_one, int_two, int_join);
|
||||||
|
t.is ((int) int_join.size (), 2, "int (1,2,3) intersect (2,3,4) = (2,3)");
|
||||||
|
t.is (int_join[0], "2", "int (1,2,3) intersect (2,3,4) = (2,3)");
|
||||||
|
t.is (int_join[1], "3", "int (1,2,3) intersect (2,3,4) = (2,3)");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue