2016-10-08 16:03:14 +02:00
|
|
|
#include <catch.hpp>
|
2016-05-22 20:19:45 +02:00
|
|
|
|
2017-05-12 14:17:57 +02:00
|
|
|
#include <tokenize/Tokenizer.h>
|
|
|
|
#include <tokenize/TokenizerException.h>
|
2016-05-22 20:19:45 +02:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-05-12 14:17:57 +02:00
|
|
|
TEST_CASE("[tokenizer] Simple strings are tokenized correctly", "[tokenizer]")
|
2016-05-24 02:23:56 +02:00
|
|
|
{
|
2016-08-07 16:46:48 +02:00
|
|
|
std::stringstream s(" identifier 5 \n-51\t 0 1 100 200 -300 -400");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p("input", s);
|
|
|
|
|
|
|
|
REQUIRE(p.get<std::string>() == "identifier");
|
2017-06-21 02:56:27 +02:00
|
|
|
REQUIRE(p.get<size_t>() == 5);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE(p.get<int>() == -51);
|
|
|
|
REQUIRE(p.get<bool>() == false);
|
|
|
|
REQUIRE(p.get<bool>() == true);
|
|
|
|
|
|
|
|
REQUIRE(p.get<int>() == 100);
|
2017-06-21 02:56:27 +02:00
|
|
|
REQUIRE(p.get<size_t>() == 200);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE(p.get<int>() == -300);
|
|
|
|
REQUIRE_THROWS_AS(p.get<size_t>(), tokenize::TokenizerException);
|
2016-05-27 03:58:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-05-12 14:17:57 +02:00
|
|
|
TEST_CASE("[tokenizer] Tokenizing exceptions are correctly reported", "[tokenizer]")
|
2016-05-27 03:58:59 +02:00
|
|
|
{
|
2016-08-07 16:46:48 +02:00
|
|
|
std::stringstream s(" identifier 5 \n-51\t 0 1 100 200 -300 -400");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p("input", s);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<std::string>("identifier"));
|
2017-06-21 02:56:27 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<size_t>(5));
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<int>(-51));
|
|
|
|
REQUIRE_NOTHROW(p.expect<bool>(false));
|
|
|
|
REQUIRE_NOTHROW(p.expect<bool>(true));
|
2016-08-07 16:46:48 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<int>(100));
|
2017-06-21 02:56:27 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<size_t>(200));
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<int>(-300));
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<size_t>(-400), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(0);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<std::string>("error"), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(14);
|
2017-06-21 02:56:27 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<size_t>(6), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(17);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<int>(-50), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(24);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<bool>(true), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(26);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<bool>(false), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(28);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<int>(101), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(31);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<size_t>(201), tokenize::TokenizerException);
|
2016-08-07 16:46:48 +02:00
|
|
|
|
|
|
|
p.seek(34);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p.expect<int>(-299), tokenize::TokenizerException);
|
2016-05-27 03:58:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-05-12 14:17:57 +02:00
|
|
|
TEST_CASE("[tokenizer] While tokenizing, the cursor position is as expected", "[tokenizer]")
|
2016-08-08 12:40:02 +02:00
|
|
|
{
|
|
|
|
std::stringstream s(" identifier 5 \n-51\t 0 1");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p("input", s);
|
2016-08-08 12:40:02 +02:00
|
|
|
|
2017-06-18 18:15:04 +02:00
|
|
|
tokenize::StreamPosition pos;
|
2016-08-08 12:40:02 +02:00
|
|
|
|
|
|
|
pos = p.position();
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<std::string>("error") == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<std::string>("identifier") == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<std::string>("error") == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<std::string>("identifier") == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == 12);
|
2016-08-08 12:40:02 +02:00
|
|
|
|
|
|
|
pos = p.position();
|
2017-06-21 02:56:27 +02:00
|
|
|
REQUIRE(p.testAndReturn<size_t>(6) == false);
|
|
|
|
CHECK(p.position() == pos);
|
|
|
|
REQUIRE(p.testAndReturn<size_t>(5) == true);
|
|
|
|
CHECK(p.position() == pos);
|
|
|
|
REQUIRE(p.testAndSkip<size_t>(6) == false);
|
|
|
|
CHECK(p.position() == pos);
|
|
|
|
REQUIRE(p.testAndSkip<size_t>(5) == true);
|
|
|
|
CHECK(p.position() == 15);
|
2016-08-08 12:40:02 +02:00
|
|
|
|
|
|
|
pos = p.position();
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<int>(-50) == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<int>(-51) == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<int>(-50) == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<int>(-51) == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == 22);
|
2016-08-08 12:40:02 +02:00
|
|
|
|
|
|
|
pos = p.position();
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<bool>(true) == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<bool>(false) == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<bool>(true) == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<bool>(false) == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == 25);
|
2016-08-08 12:40:02 +02:00
|
|
|
|
|
|
|
pos = p.position();
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<bool>(false) == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndReturn<bool>(true) == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<bool>(false) == false);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == pos);
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE(p.testAndSkip<bool>(true) == true);
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == 27);
|
2016-08-08 12:40:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-05-12 14:17:57 +02:00
|
|
|
TEST_CASE("[tokenizer] The end of the input stream is correctly handled", "[tokenizer]")
|
2016-05-27 03:58:59 +02:00
|
|
|
{
|
|
|
|
std::stringstream s1("test");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p1("input", s1);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p1.expect<std::string>("test"));
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p1.get<std::string>(), tokenize::TokenizerException);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
|
|
|
std::stringstream s2("test1 test2 test3");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p2("input", s2);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p2.expect<std::string>("test1"));
|
|
|
|
REQUIRE_NOTHROW(p2.expect<std::string>("test2"));
|
|
|
|
REQUIRE_NOTHROW(p2.expect<std::string>("test3"));
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p2.get<std::string>(), tokenize::TokenizerException);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
|
|
|
std::stringstream s3("-127");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p3("input", s3);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
|
|
|
p3.expect<int>(-127);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p3.get<int>(), tokenize::TokenizerException);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
|
|
|
std::stringstream s4("128 -1023 -4095");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p4("input", s4);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p4.expect<size_t>(128));
|
|
|
|
REQUIRE_NOTHROW(p4.expect<int>(-1023));
|
|
|
|
REQUIRE_NOTHROW(p4.expect<int>(-4095));
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p4.get<int>(), tokenize::TokenizerException);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
|
|
|
std::stringstream s5("0");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p5("input", s5);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
|
|
|
p5.expect<bool>(false);
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p5.get<bool>(), tokenize::TokenizerException);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
|
|
|
std::stringstream s6("0 1 0");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p6("input", s6);
|
2016-05-27 03:58:59 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p6.expect<bool>(false));
|
|
|
|
REQUIRE_NOTHROW(p6.expect<bool>(true));
|
|
|
|
REQUIRE_NOTHROW(p6.expect<bool>(false));
|
2017-05-12 14:17:57 +02:00
|
|
|
REQUIRE_THROWS_AS(p6.get<bool>(), tokenize::TokenizerException);
|
2016-05-24 02:23:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-05-12 14:17:57 +02:00
|
|
|
TEST_CASE("[tokenizer] While tokenizing, the cursor location is as expcected", "[tokenizer]")
|
2016-05-30 12:32:13 +02:00
|
|
|
{
|
2016-05-30 13:00:55 +02:00
|
|
|
std::stringstream s("123 \n4\ntest1\n test2\ntest3 \ntest4\n\n\n\n");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p("input", s);
|
2016-06-07 18:41:01 +02:00
|
|
|
|
2016-06-22 10:02:46 +02:00
|
|
|
const auto startPosition = p.position();
|
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
tokenize::Location l;
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == '1');
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
p.advance();
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 2);
|
|
|
|
CHECK(p.currentCharacter() == '2');
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
p.advance();
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 3);
|
|
|
|
CHECK(p.currentCharacter() == '3');
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
p.advance();
|
2016-05-30 12:56:30 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 4);
|
|
|
|
CHECK(p.currentCharacter() == ' ');
|
2016-05-30 12:56:30 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
p.advance();
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 5);
|
|
|
|
CHECK(p.currentCharacter() == '\n');
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
p.advance();
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 2);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == '4');
|
|
|
|
|
|
|
|
p.advance();
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<std::string>("test1"));
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 6);
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<std::string>("test2"));
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 4);
|
|
|
|
CHECK(l.columnStart == 7);
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<std::string>("test3"));
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 5);
|
|
|
|
CHECK(l.columnStart == 6);
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.skipLine());
|
2016-05-30 13:00:55 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 6);
|
|
|
|
CHECK(l.columnStart == 1);
|
2016-05-30 13:00:55 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.skipLine());
|
2016-05-30 13:00:55 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 7);
|
|
|
|
CHECK(l.columnStart == 1);
|
2016-05-30 13:00:55 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.skipWhiteSpace());
|
2016-05-30 12:32:13 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p.location();
|
|
|
|
CHECK(l.rowStart == 10);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.atEnd());
|
2016-06-07 18:41:01 +02:00
|
|
|
|
2016-06-22 10:02:46 +02:00
|
|
|
p.reset();
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == startPosition);
|
|
|
|
CHECK_FALSE(p.atEnd());
|
2016-06-22 10:02:46 +02:00
|
|
|
|
2016-06-22 10:07:19 +02:00
|
|
|
for (size_t i = 0; i < 5; i++)
|
|
|
|
p.advance();
|
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == static_cast<std::istream::pos_type>(5));
|
2016-06-22 10:07:19 +02:00
|
|
|
|
|
|
|
p.seek(static_cast<std::istream::pos_type>(7));
|
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p.position() == static_cast<std::istream::pos_type>(7));
|
2016-06-22 10:07:19 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p.expect<std::string>("test1"));
|
2017-06-21 02:56:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
TEST_CASE("[tokenizer] While tokenizing with multiple sections, the cursor location is as expcected", "[tokenizer]")
|
|
|
|
{
|
|
|
|
std::stringstream s1("123 \n4\ntest1\n");
|
|
|
|
std::stringstream s2("456 \n7\ntest2\n");
|
|
|
|
tokenize::Tokenizer<> p;
|
|
|
|
p.read("test-1", s1);
|
|
|
|
p.read("test-2", s2);
|
|
|
|
|
|
|
|
const auto advance =
|
|
|
|
[&](auto steps)
|
|
|
|
{
|
|
|
|
for (auto i = 0; i < steps; i++)
|
|
|
|
p.advance();
|
|
|
|
};
|
|
|
|
|
|
|
|
tokenize::Location l;
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == '1');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 2);
|
|
|
|
CHECK(p.currentCharacter() == '2');
|
|
|
|
|
|
|
|
advance(3);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 5);
|
|
|
|
CHECK(p.currentCharacter() == '\n');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 2);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == '4');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 2);
|
|
|
|
CHECK(l.columnStart == 2);
|
|
|
|
CHECK(p.currentCharacter() == '\n');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == 't');
|
|
|
|
|
|
|
|
advance(4);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 5);
|
|
|
|
CHECK(p.currentCharacter() == '1');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-1");
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 6);
|
|
|
|
CHECK(p.currentCharacter() == '\n');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == '4');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 2);
|
|
|
|
CHECK(p.currentCharacter() == '5');
|
|
|
|
|
|
|
|
advance(3);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 1);
|
|
|
|
CHECK(l.columnStart == 5);
|
|
|
|
CHECK(p.currentCharacter() == '\n');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 2);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == '7');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 2);
|
|
|
|
CHECK(l.columnStart == 2);
|
|
|
|
CHECK(p.currentCharacter() == '\n');
|
2016-06-22 10:07:19 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 1);
|
|
|
|
CHECK(p.currentCharacter() == 't');
|
|
|
|
|
|
|
|
advance(4);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 5);
|
|
|
|
CHECK(p.currentCharacter() == '2');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
l = p.location();
|
|
|
|
CHECK(l.sectionStart == "test-2");
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 6);
|
|
|
|
CHECK(p.currentCharacter() == '\n');
|
|
|
|
|
|
|
|
advance(1);
|
|
|
|
|
|
|
|
CHECK(p.atEnd());
|
2016-05-30 12:32:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-05-12 14:17:57 +02:00
|
|
|
TEST_CASE("[tokenizer] Comments are correctly removed", "[tokenizer]")
|
2016-06-10 16:40:43 +02:00
|
|
|
{
|
|
|
|
std::stringstream s1("; comment at beginning\ntest1; comment in between\ntest2; comment at end");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p1("input", s1);
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
p1.removeComments(";", "\n", false);
|
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p1.expect<std::string>("test1"));
|
2016-06-10 16:40:43 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
tokenize::Location l;
|
|
|
|
|
|
|
|
l = p1.location();
|
|
|
|
CHECK(l.rowStart == 2);
|
|
|
|
CHECK(l.columnStart == 6);
|
2016-06-10 16:40:43 +02:00
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p1.expect<std::string>("test2"));
|
2016-06-10 16:40:43 +02:00
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
l = p1.location();
|
|
|
|
CHECK(l.rowStart == 3);
|
|
|
|
CHECK(l.columnStart == 6);
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
p1.skipWhiteSpace();
|
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p1.atEnd());
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
std::stringstream s2("test;");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p2("input", s2);
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
p2.removeComments(";", "\n", false);
|
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p2.expect<std::string>("test"));
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
p2.skipWhiteSpace();
|
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p2.atEnd());
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
std::stringstream s3("/* comment at start */ test1 /* comment in between */ test2 /*");
|
2017-05-12 14:17:57 +02:00
|
|
|
tokenize::Tokenizer<> p3("input", s3);
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
p3.removeComments("/*", "*/", true);
|
|
|
|
|
2016-10-08 16:03:14 +02:00
|
|
|
REQUIRE_NOTHROW(p3.expect<std::string>("test1"));
|
|
|
|
REQUIRE_NOTHROW(p3.expect<std::string>("test2"));
|
2016-06-10 16:40:43 +02:00
|
|
|
|
|
|
|
p3.skipWhiteSpace();
|
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p3.atEnd());
|
2017-06-18 18:12:02 +02:00
|
|
|
|
|
|
|
// Check that if there are no comments, the end is not accidentally truncated
|
|
|
|
std::stringstream s4("test foo bar");
|
|
|
|
tokenize::Tokenizer<> p4("input", s4);
|
|
|
|
|
|
|
|
p4.removeComments(";", "\n", false);
|
|
|
|
|
|
|
|
REQUIRE_NOTHROW(p4.expect<std::string>("test"));
|
|
|
|
REQUIRE_NOTHROW(p4.expect<std::string>("foo"));
|
|
|
|
REQUIRE_NOTHROW(p4.expect<std::string>("bar"));
|
|
|
|
|
2017-06-21 02:56:27 +02:00
|
|
|
CHECK(p4.atEnd());
|
2016-06-10 16:40:43 +02:00
|
|
|
}
|