aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/parser/validation/built-in/byte/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cxx/parser/validation/built-in/byte/driver.cxx')
-rw-r--r--tests/cxx/parser/validation/built-in/byte/driver.cxx280
1 files changed, 280 insertions, 0 deletions
diff --git a/tests/cxx/parser/validation/built-in/byte/driver.cxx b/tests/cxx/parser/validation/built-in/byte/driver.cxx
new file mode 100644
index 0000000..26f5a12
--- /dev/null
+++ b/tests/cxx/parser/validation/built-in/byte/driver.cxx
@@ -0,0 +1,280 @@
+// file : tests/cxx/parser/validation/built-in/byte/driver.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2006-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+// Test the built-in byte and unsigned byte types validation.
+//
+#include <cassert>
+
+#include <xsde/cxx/parser/validating/byte.hxx>
+#include <xsde/cxx/parser/validating/unsigned-byte.hxx>
+
+using namespace xsde::cxx::parser;
+using namespace xsde::cxx::parser::validating;
+
+int
+main ()
+{
+ // Good.
+ //
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("123");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == 123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("\t +123 \n ");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == 123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("-123");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == -123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("+123");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == 123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("0000000000000000123");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == 123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("+0000000000000000123");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == 123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("-0000000000000000123");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == -123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("\t \n");
+ p._characters (" -");
+ p._characters ("00000");
+ p._characters ("001");
+ p._characters ("23 \n\t");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == -123);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("-128");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == -128);
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("127");
+ p._post ();
+ assert (!c.error_type () && p.post_byte () == 127);
+ }
+
+ {
+ context c (0);
+ unsigned_byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("+123");
+ p._post ();
+ assert (!c.error_type () && p.post_unsigned_byte () == 123);
+ }
+
+ {
+ context c (0);
+ unsigned_byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("0");
+ p._post ();
+ assert (!c.error_type () && p.post_unsigned_byte () == 0);
+ }
+
+ {
+ context c (0);
+ unsigned_byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("255");
+ p._post ();
+ assert (!c.error_type () && p.post_unsigned_byte () == 255);
+ }
+
+ // Bad
+ //
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ // p._characters ("");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters (" \n \t ");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("+");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("-");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("++01");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("--01");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("-01");
+ p._characters (" ");
+ p._characters ("23 ");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ unsigned_byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("-123");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ // Ranges
+ //
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("-129");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("128");
+ p._post ();
+ assert (c.schema_error ());
+ }
+
+ {
+ context c (0);
+ unsigned_byte_pimpl p;
+ p.pre ();
+ p._pre_impl (c);
+ p._characters ("256");
+ p._post ();
+ assert (c.schema_error ());
+ }
+}