aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-10-28 17:56:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-11-11 17:46:11 +0200
commit1ce84922e3008cad6cf1b9056b705f2642bd3772 (patch)
tree0dde62654e56c8e94ebf0cef83181ea9ddc99faf /tests
parent4993f11bf464c9aee0e3fd5965f4a8258cbe8b30 (diff)
WEB pages re-styling
Diffstat (limited to 'tests')
-rw-r--r--tests/loader/driver.cxx33
-rw-r--r--tests/loader/internal/1/math/packages24
-rw-r--r--tests/web/xhtml/test.out1
3 files changed, 34 insertions, 24 deletions
diff --git a/tests/loader/driver.cxx b/tests/loader/driver.cxx
index 6d9b950..f1e1385 100644
--- a/tests/loader/driver.cxx
+++ b/tests/loader/driver.cxx
@@ -320,9 +320,11 @@ main (int argc, char* argv[])
assert (fpv5->summary == "The Foo Math Library");
assert (fpv5->tags == strings ({"c++", "foo", "math"}));
assert (*fpv5->description ==
- "A modern C++ library with easy to use linear algebra and "
- "optimization tools. There are over 100 functions in total with "
- "an extensive test suite. The API is similar to MATLAB.");
+ "A modern C++ library with easy to use linear algebra and lot of "
+ "optimization\ntools.\n\nThere are over 100 functions in total "
+ "with an extensive test suite. The API is\nsimilar to MATLAB."
+ "\n\nUseful for conversion of research code into production "
+ "environments.");
assert (fpv5->url == "http://www.example.com/foo/");
assert (fpv5->package_url &&
*fpv5->package_url == "http://www.example.com/foo/pack");
@@ -335,7 +337,8 @@ main (int argc, char* argv[])
assert (fpv5->external_repositories[0].load () == cr);
assert (fpv5->priority == priority::high);
- assert (fpv5->priority.comment == "Due to critical bug fix.");
+ assert (fpv5->priority.comment ==
+ "Critical bug fixes, performance improvement.");
const char ch[] = R"DLM(1.2.4-1
* applied patch for critical bug-219
@@ -360,7 +363,7 @@ main (int argc, char* argv[])
assert (fpv5->dependencies.size () == 2);
assert (fpv5->dependencies[0].size () == 2);
assert (fpv5->dependencies[0].comment ==
- "Crashes in range [1.1, 2.3.0].");
+ "Crashes with 1.1.0-2.3.0.");
assert (fpv5->dependencies[0][0] ==
(dependency {
@@ -374,31 +377,31 @@ main (int argc, char* argv[])
brep::optional<dependency_constraint> (
dependency_constraint{comparison::gt, version ("2.3.0")})}));
- assert (fpv5->dependencies[1].size () == 1);
- assert (fpv5->dependencies[1].comment == "Newer - better.");
+ assert (fpv5->dependencies[1].size () == 2);
+ assert (fpv5->dependencies[1].comment == "The newer the better.");
- assert (fpv5->dependencies[1][0] ==
- (dependency {"libstudxml", nullopt}));
+ assert (fpv5->dependencies[1][0] == (dependency {"libstudxml", nullopt}));
+ assert (fpv5->dependencies[1][1] == (dependency {"libexpat", nullopt}));
requirements& fpvr5 (fpv5->requirements);
assert (fpvr5.size () == 4);
assert (fpvr5[0] == strings ({"linux", "windows", "macosx"}));
assert (!fpvr5[0].conditional);
- assert (fpvr5[0].comment == "Symbian is coming.");
+ assert (fpvr5[0].comment == "Symbian support is coming.");
assert (fpvr5[1] == strings ({"c++11"}));
assert (!fpvr5[1].conditional);
assert (fpvr5[1].comment.empty ());
- assert (fpvr5[2] == strings ({"VC++"}));
+ assert (fpvr5[2].empty ());
assert (fpvr5[2].conditional);
- assert (fpvr5[2].comment == "12.0 or later if targeting Windows.");
+ assert (fpvr5[2].comment ==
+ "libc++ standard library if using Clang on Mac OS X.");
- assert (fpvr5[3].empty ());
+ assert (fpvr5[3] == strings ({"vc++ >= 12.0"}));
assert (fpvr5[3].conditional);
- assert (fpvr5[3].comment ==
- "libc++ standard library if using Clang on Mac OS X.");
+ assert (fpvr5[3].comment == "Only if using VC++ on Windows.");
// Verify libexp package version.
//
diff --git a/tests/loader/internal/1/math/packages b/tests/loader/internal/1/math/packages
index 98a21d2..d55a9e3 100644
--- a/tests/loader/internal/1/math/packages
+++ b/tests/loader/internal/1/math/packages
@@ -13,23 +13,29 @@ location: libexp-1+1.2.tar.gz
name: libfoo
version: 1.2.4-1
summary: The Foo Math Library
-description: A modern C++ library with easy to use linear algebra and \
-optimization tools. There are over 100 functions in total with an extensive \
-test suite. The API is similar to MATLAB.
+description:\
+A modern C++ library with easy to use linear algebra and lot of optimization
+tools.
+
+There are over 100 functions in total with an extensive test suite. The API is
+similar to MATLAB.
+
+Useful for conversion of research code into production environments.
+\
license: LGPLv2, MIT; If using with GNU TLS.
license: BSD; If using with OpenSSL.
-priority: high; Due to critical bug fix.
+priority: high; Critical bug fixes, performance improvement.
tags: c++, foo, math
url: http://www.example.com/foo/; Project home page.
-email: foo-users@example.com; Public mailing list.
+email: foo-users@example.com; Public mailing list. Read FAQ before posting.
package-url: http://www.example.com/foo/pack; Package details.
package-email: pack@example.com; Current packager.
-depends: libmisc < 1.1 | libmisc > 2.3.0; Crashes in range [1.1, 2.3.0].
-depends: ? libstudxml; Newer - better.
-requires: linux | windows | macosx; Symbian is coming.
+depends: libmisc < 1.1 | libmisc > 2.3.0; Crashes with 1.1.0-2.3.0.
+depends: ? libstudxml | libexpat; The newer the better.
+requires: linux | windows | macosx; Symbian support is coming.
requires: c++11
-requires: ? VC++; 12.0 or later if targeting Windows.
requires: ? ; libc++ standard library if using Clang on Mac OS X.
+requires: ? vc++ >= 12.0; Only if using VC++ on Windows.
location: libfoo-1.2.4-1.tar.gz
changes:\
1.2.4-1
diff --git a/tests/web/xhtml/test.out b/tests/web/xhtml/test.out
index ffa6df6..a590e1f 100644
--- a/tests/web/xhtml/test.out
+++ b/tests/web/xhtml/test.out
@@ -2,6 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8"/>
+ <meta name="viewport" content="device-width, initial-scale=1"/>
<title>Example XHTML5 document</title>
</head>
<body>