diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-07 00:35:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-07 00:35:02 +0100 |
| commit | 6cac3a738e897fcc326ba70564f02c8dfa2ef900 (patch) | |
| tree | 12db6db59a29b86a7d479e8f77f056daf21ab6fb /test | |
| parent | 3ed27a56082d4f21e9688852f8eb13477d192f58 (diff) | |
Add another test.
Diffstat (limited to 'test')
| -rw-r--r-- | test/asset_test.cc | 55 | ||||
| -rw-r--r-- | test/wscript | 1 |
2 files changed, 56 insertions, 0 deletions
diff --git a/test/asset_test.cc b/test/asset_test.cc new file mode 100644 index 00000000..adaeb4a1 --- /dev/null +++ b/test/asset_test.cc @@ -0,0 +1,55 @@ +/* + Copyright (C) 2015 Carl Hetherington <cth@carlh.net> + + 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 +y Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include <boost/test/unit_test.hpp> +#include "asset.h" + +using std::string; +using boost::shared_ptr; + +class DummyAsset : public dcp::Asset +{ +protected: + std::string pkl_type (dcp::Standard standard) const { + return "none"; + } +}; + +static void +note_handler (dcp::NoteType, string) +{ + +} + +/** Test a few dusty corners of Asset */ +BOOST_AUTO_TEST_CASE (asset_test) +{ + shared_ptr<DummyAsset> a (new DummyAsset); + a->_hash = "abc"; + shared_ptr<DummyAsset> b (new DummyAsset); + b->_hash = "def"; + + BOOST_CHECK (!a->equals (b, dcp::EqualityOptions (), boost::bind (¬e_handler, _1, _2))); + + b->_hash = "abc"; + BOOST_CHECK (a->equals (b, dcp::EqualityOptions (), boost::bind (¬e_handler, _1, _2))); + + b->_file = "foo/bar/baz"; + BOOST_CHECK (a->equals (b, dcp::EqualityOptions (), boost::bind (¬e_handler, _1, _2))); +} diff --git a/test/wscript b/test/wscript index 0fae810c..da306d61 100644 --- a/test/wscript +++ b/test/wscript @@ -25,6 +25,7 @@ def build(bld): else: obj.use = 'libdcp%s' % bld.env.API_VERSION obj.source = """ + asset_test.cc certificates_test.cc colour_test.cc colour_conversion_test.cc |
