mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-06 10:06:25 +02:00
Improve tests
This commit is contained in:
parent
55b2c72108
commit
e6e2c5a8bf
3 changed files with 77 additions and 3 deletions
14
src/pgnp.cpp
14
src/pgnp.cpp
|
@ -239,7 +239,12 @@ int PGN::ParseNextTag(int start_loc) {
|
||||||
tags[key] = value;
|
tags[key] = value;
|
||||||
tagkeys.push_back(key);
|
tagkeys.push_back(key);
|
||||||
|
|
||||||
// TODO: Check that caracters if a ]
|
EOF_CHECK(valueloc + 1);
|
||||||
|
c = pgn_content[valueloc + 1];
|
||||||
|
if (c != ']') {
|
||||||
|
throw UnexpectedCharacter(c, ']', valueloc + 1);
|
||||||
|
}
|
||||||
|
|
||||||
return (valueloc + 1); // +1 For the last char of the tag which is ']'
|
return (valueloc + 1); // +1 For the last char of the tag which is ']'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,7 +252,12 @@ HalfMove *PGN::GetMoves() { return (moves); }
|
||||||
|
|
||||||
std::vector<std::string> PGN::GetTagList() { return tagkeys; }
|
std::vector<std::string> PGN::GetTagList() { return tagkeys; }
|
||||||
|
|
||||||
std::string PGN::GetTagValue(std::string key) { return tags[key]; }
|
std::string PGN::GetTagValue(std::string key) {
|
||||||
|
if (tags.find(key) == tags.end()) {
|
||||||
|
throw InvalidTagName();
|
||||||
|
}
|
||||||
|
return tags[key];
|
||||||
|
}
|
||||||
|
|
||||||
void PGN::Dump() {
|
void PGN::Dump() {
|
||||||
std::cout << "---------- PGN DUMP ----------" << std::endl;
|
std::cout << "---------- PGN DUMP ----------" << std::endl;
|
||||||
|
|
17
src/pgnp.hpp
17
src/pgnp.hpp
|
@ -2,6 +2,7 @@
|
||||||
#include <exception>
|
#include <exception>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <sstream>
|
||||||
#include <streambuf>
|
#include <streambuf>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
@ -24,6 +25,7 @@ public:
|
||||||
|
|
||||||
HalfMove();
|
HalfMove();
|
||||||
~HalfMove();
|
~HalfMove();
|
||||||
|
/// @brief Get number of HalfMove in the MailLine
|
||||||
int GetLength();
|
int GetLength();
|
||||||
/// @brief Dump move and all its variations
|
/// @brief Dump move and all its variations
|
||||||
void Dump();
|
void Dump();
|
||||||
|
@ -66,6 +68,21 @@ struct UnexpectedEOF : public std::exception {
|
||||||
const char *what() const throw() { return "Unexpected end of pgn file"; }
|
const char *what() const throw() { return "Unexpected end of pgn file"; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct InvalidTagName : public std::exception {
|
||||||
|
const char *what() const throw() { return "Invalid tag name"; }
|
||||||
|
};
|
||||||
|
|
||||||
|
struct UnexpectedCharacter : public std::exception {
|
||||||
|
std::string msg;
|
||||||
|
UnexpectedCharacter(char actual, char required, int loc) {
|
||||||
|
std::stringstream ss;
|
||||||
|
ss << "Expected \'" << required << "\' at location " << loc
|
||||||
|
<< " but read \'" << actual << "\'";
|
||||||
|
msg = ss.str();
|
||||||
|
}
|
||||||
|
const char *what() const throw() { return msg.c_str(); }
|
||||||
|
};
|
||||||
|
|
||||||
struct STRCheckFailed : public std::exception {
|
struct STRCheckFailed : public std::exception {
|
||||||
const char *what() const throw() {
|
const char *what() const throw() {
|
||||||
return "Seven Tag Roster compliance check failed";
|
return "Seven Tag Roster compliance check failed";
|
||||||
|
|
|
@ -7,7 +7,54 @@ TEST_CASE("Valid PGN", "[pgn1]") {
|
||||||
PGN pgn;
|
PGN pgn;
|
||||||
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/valid/pgn1.pgn"));
|
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/valid/pgn1.pgn"));
|
||||||
REQUIRE_THROWS(pgn.STRCheck());
|
REQUIRE_THROWS(pgn.STRCheck());
|
||||||
REQUIRE(pgn.GetMoves()->GetLength() == 6);
|
|
||||||
|
HalfMove *m = pgn.GetMoves();
|
||||||
|
REQUIRE(m->GetLength() == 6);
|
||||||
|
|
||||||
|
SECTION("Main line move checks") {
|
||||||
|
CHECK(m->move == "g3");
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK(m->move == "d5");
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK(m->move == "Bg2");
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK(m->move == "Nf6");
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK(m->move == "c4");
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK(m->move == "c6");
|
||||||
|
}
|
||||||
|
|
||||||
|
SECTION("Main line color checks") {
|
||||||
|
m = pgn.GetMoves();
|
||||||
|
CHECK_FALSE(m->isBlack);
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK(m->isBlack);
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK_FALSE(m->isBlack);
|
||||||
|
|
||||||
|
m = m->MainLine;
|
||||||
|
CHECK(m->isBlack);
|
||||||
|
}
|
||||||
|
|
||||||
|
SECTION("Tag exists checks") {
|
||||||
|
CHECK(pgn.HasTag("WhiteElo"));
|
||||||
|
CHECK_FALSE(pgn.HasTag("Round"));
|
||||||
|
CHECK(pgn.HasTag("TimeControl"));
|
||||||
|
}
|
||||||
|
|
||||||
|
SECTION("Tag values checks") {
|
||||||
|
CHECK(pgn.GetTagValue("WhiteElo") == "1830");
|
||||||
|
CHECK(pgn.GetTagValue("TimeControl") == "600+5");
|
||||||
|
CHECK_THROWS_AS(pgn.GetTagValue("InvalidTagName"), InvalidTagName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("Valid PGN", "[pgn2]") {
|
TEST_CASE("Valid PGN", "[pgn2]") {
|
||||||
|
|
Loading…
Add table
Reference in a new issue