#include "gtest/gtest.h"
#include "gmock/gmock.h"
#include <vector>
+#include <sstream>
-TEST(Adjacency, Adjacency) {
+using testing::Field;
+using testing::Pointee;
+
+TEST(Step, Adjacency) {
const signed char LEFT = -1;
const signed char RIGHT = +1;
const signed char UP = -BOARD_DIM;
}
std::vector<signed char> actual;
- for (int j = 0; adjacent[i][j] >= 0; j++) {
- actual.push_back(adjacent[i][j]);
+ for (int j = 0; Step::adjacent[i][j] >= 0; j++) {
+ actual.push_back(Step::adjacent[i][j]);
}
EXPECT_THAT(actual, testing::UnorderedElementsAreArray(expected));
}
}
+TEST(Board, Equal) {
+ Board b1{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ Board b2{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ EXPECT_TRUE(b1 == b2);
+ EXPECT_FALSE(b1 != b2);
+ EXPECT_EQ(b1, b2);
+ EXPECT_FALSE(b1 < b2);
+ EXPECT_FALSE(b2 < b1);
+}
+
+TEST(Board, NotEqual) {
+ Board b1{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ Board b2{{1,2,3,4,5,6,7,8,10,9,11,12,13,14,15,0}};
+ EXPECT_FALSE(b1 == b2);
+ EXPECT_TRUE(b1 != b2);
+ EXPECT_NE(b1, b2);
+ EXPECT_TRUE(b1 < b2);
+ EXPECT_FALSE(b2 < b1);
+}
+
TEST(Board, GoodInput) {
std::istringstream is{"15,14,9,13,3,1,12,8,0,11,6,4,7,5,2,10"};
Board b;
is >> b;
EXPECT_FALSE(is.fail());
EXPECT_TRUE(is.eof());
- EXPECT_THAT(b.board, testing::ElementsAreArray({15,14,9,13,3,1,12,8,0,11,6,4,7,5,2,10}));
+ EXPECT_EQ((Board{{15,14,9,13,3,1,12,8,0,11,6,4,7,5,2,10}}), b);
}
TEST(Board, ShortInput) {
is >> b;
EXPECT_TRUE(is.fail());
}
+
+TEST(Board, Hole) {
+ Board b{{16,14,9,13,3,1,12,8,0,11,6,4,7,5,2,10}};
+ EXPECT_EQ(8, b.hole());
+}
+
+TEST(Board, NoHole) {
+ Board b{{16,14,9,13,3,1,12,8,16,11,6,4,7,5,2,10}};
+ EXPECT_THROW(b.hole(), std::runtime_error);
+}
+
+TEST(Board, ZeroDistance) {
+ Board b{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ EXPECT_EQ(0, b.distance(b));
+}
+
+TEST(Board, DistanceAdjacentTilesFlipped) {
+ Board b1{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ Board b2{{2,1,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ EXPECT_EQ(2, b1.distance(b2));
+}
+
+TEST(Board, DistanceOneMoveRemaining) {
+ Board b1{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ Board b2{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,0,15}};
+ EXPECT_EQ(2, b1.distance(b2));
+}
+
+TEST(Board, DistanceCornersSwapped) {
+ Board b1{{0,2,3,13,5,6,7,8,9,10,11,12,4,14,15,1}};
+ Board b2{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ EXPECT_EQ(24, b1.distance(b2));
+}
+
+TEST(Board, MaxDistance) {
+ Board b1{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}};
+ Board b2{{0,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1}};
+ EXPECT_EQ(64, b1.distance(b2));
+}
+
+TEST(Step, TwoSuccessors) {
+ auto s = std::make_shared<Step>(Step{{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}}, nullptr});
+ std::vector<std::shared_ptr<Step>> suc = s->successors(s);
+ EXPECT_THAT(suc, testing::UnorderedElementsAre(
+ Pointee(Field(&Step::board, Board{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,0,15}})),
+ Pointee(Field(&Step::board, Board{{1,2,3,4,5,6,7,8,9,10,11,0,13,14,15,12}}))));
+}
+
+TEST(Step, FourSuccessors) {
+ auto s = std::make_shared<Step>(Step{{{1,2,3,4,5,0,6,7,8,9,10,11,12,13,14,15}}, nullptr});
+ std::vector<std::shared_ptr<Step>> suc = s->successors(s);
+ EXPECT_THAT(suc, testing::UnorderedElementsAre(
+ Pointee(Field(&Step::board, Board{{1,2,3,4,0,5,6,7,8,9,10,11,12,13,14,15}})),
+ Pointee(Field(&Step::board, Board{{1,2,3,4,5,6,0,7,8,9,10,11,12,13,14,15}})),
+ Pointee(Field(&Step::board, Board{{1,0,3,4,5,2,6,7,8,9,10,11,12,13,14,15}})),
+ Pointee(Field(&Step::board, Board{{1,2,3,4,5,9,6,7,8,0,10,11,12,13,14,15}}))));
+}
+
+TEST(Step, Output) {
+ auto s1 = std::make_shared<Step>(Step{{{1,2,3,4,5,7,11,8,9,6,0,12,13,10,14,15}}, nullptr});
+ auto s2 = std::make_shared<Step>(Step{{{1,2,3,4,5,7,0,8,9,6,11,12,13,10,14,15}}, s1});
+ auto s3 = std::make_shared<Step>(Step{{{1,2,3,4,5,0,7,8,9,6,11,12,13,10,14,15}}, s2});
+ auto s4 = std::make_shared<Step>(Step{{{1,2,3,4,5,6,7,8,9,0,11,12,13,10,14,15}}, s3});
+ auto s5 = std::make_shared<Step>(Step{{{1,2,3,4,5,6,7,8,9,10,11,12,13,0,14,15}}, s4});
+ auto s6 = std::make_shared<Step>(Step{{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,0,15}}, s5});
+ auto s7 = std::make_shared<Step>(Step{{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}}, s6});
+ std::ostringstream actual;
+ actual << *s7;
+ std::ostringstream expected;
+ expected << "11 down" << std::endl
+ << "7 right" << std::endl
+ << "6 up" << std::endl
+ << "10 up" << std::endl
+ << "14 left" << std::endl
+ << "15 left" << std::endl;
+ EXPECT_EQ(expected.str(), actual.str());
+}