From 86f71bd8525302519d1ec22ab135e662c43e8af3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 9 Sep 2011 12:20:26 +0200 Subject: Add test for queries involving object relationships --- common/relationship-query/test.hxx | 140 +++++++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 common/relationship-query/test.hxx (limited to 'common/relationship-query/test.hxx') diff --git a/common/relationship-query/test.hxx b/common/relationship-query/test.hxx new file mode 100644 index 0000000..c832405 --- /dev/null +++ b/common/relationship-query/test.hxx @@ -0,0 +1,140 @@ +// file : common/relationship-query/test.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include // HAVE_TR1_MEMORY + +#ifdef HAVE_TR1_MEMORY + +#include + +#include +#include + +struct country; + +#pragma db value +struct residence_info +{ + residence_info (bool p, std::tr1::shared_ptr l) + : permanent (p), location (l) + { + } + + residence_info () + { + } + + bool permanent; + + #pragma db not_null + std::tr1::shared_ptr location; +}; + +#pragma db object pointer(std::tr1::shared_ptr) +struct person +{ + person (unsigned long i, + const std::string& fn, + const std::string& ln, + unsigned short a, + std::tr1::shared_ptr r, + bool p, + std::tr1::shared_ptr n) + : id (i), + first_name (fn), + last_name (ln), + age (a), + residence (p, r), + nationality (n) + { + } + + person () + { + } + + #pragma db id + unsigned long id; + + #pragma db column ("first") + std::string first_name; + + #pragma db column ("last") + std::string last_name; + + unsigned short age; + + residence_info residence; + + #pragma db not_null + std::tr1::shared_ptr nationality; + + std::tr1::shared_ptr husband; // Self-join. +}; + +struct employer; + +#pragma db object pointer(std::tr1::shared_ptr) +struct employee: person +{ + employee (unsigned long i, + const std::string& fn, + const std::string& ln, + unsigned short a, + std::tr1::shared_ptr r, + bool p, + std::tr1::shared_ptr n, + std::tr1::shared_ptr e) + : person (i, fn, ln, a, r, p, n), + employed_by (e) + { + } + + employee () + { + } + + std::tr1::shared_ptr employed_by; +}; + +#pragma db object pointer(std::tr1::shared_ptr) +struct employer +{ + employer (const std::string& n) + : name (n) + { + } + + employer () + { + } + + #pragma db id + std::string name; +}; + +#pragma db object pointer(std::tr1::shared_ptr) +struct country +{ + country (const std::string& c, std::string const& n) + : code (c), name (n) + { + } + + country () + { + } + + #pragma db id + std::string code; // ISO 2-letter country code. + + std::string name; +}; + +#endif // HAVE_TR1_MEMORY +#endif // TEST_HXX -- cgit v1.1