2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
KLayout Layout Viewer
|
2017-02-12 15:28:14 +01:00
|
|
|
Copyright (C) 2006-2017 Matthias Koefferlein
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "dbPoint.h"
|
|
|
|
|
#include "dbVector.h"
|
|
|
|
|
#include "tlString.h"
|
|
|
|
|
#include "utHead.h"
|
|
|
|
|
|
|
|
|
|
TEST(1)
|
|
|
|
|
{
|
|
|
|
|
db::Point p;
|
|
|
|
|
EXPECT_EQ (p.x (), 0);
|
|
|
|
|
EXPECT_EQ (p.y (), 0);
|
|
|
|
|
db::Vector pp (100, 200);
|
|
|
|
|
EXPECT_EQ ((p + pp).x (), 100);
|
|
|
|
|
EXPECT_EQ ((p + pp).y (), 200);
|
|
|
|
|
p += pp;
|
|
|
|
|
p += db::Vector (p) + pp;
|
|
|
|
|
EXPECT_EQ ((p - pp).x (), 200);
|
|
|
|
|
EXPECT_EQ ((p - pp).y (), 400);
|
|
|
|
|
EXPECT_EQ ((db::Point () - p).to_string (), "-300,-600");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(2)
|
|
|
|
|
{
|
|
|
|
|
db::DPoint p (12.5, -17.1);
|
|
|
|
|
EXPECT_EQ (p.to_string (), "12.5,-17.1");
|
|
|
|
|
|
|
|
|
|
db::DPoint pp;
|
|
|
|
|
tl::Extractor ex ("a");
|
|
|
|
|
EXPECT_EQ (ex.try_read (pp), false);
|
|
|
|
|
ex = tl::Extractor ("12.500, -171e-1 a");
|
|
|
|
|
EXPECT_EQ (ex.try_read (pp), true);
|
|
|
|
|
EXPECT_EQ (pp.to_string (), p.to_string ());
|
|
|
|
|
EXPECT_EQ (ex.test ("a"), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(3)
|
|
|
|
|
{
|
|
|
|
|
db::Point p (125, -171);
|
|
|
|
|
EXPECT_EQ (p.to_string (), "125,-171");
|
|
|
|
|
|
|
|
|
|
db::Point pp;
|
|
|
|
|
tl::Extractor ex ("a");
|
|
|
|
|
EXPECT_EQ (ex.try_read (pp), false);
|
|
|
|
|
ex = tl::Extractor (" 125, -171 a");
|
|
|
|
|
EXPECT_EQ (ex.try_read (pp), true);
|
|
|
|
|
EXPECT_EQ (pp == p, true);
|
|
|
|
|
EXPECT_EQ (ex.test ("a"), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|