Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 1 | /** |
| 2 | * Copyright (C) 2013 Regents of the University of California. |
| 3 | * @author: Yingdi Yu <yingdi0@cs.ucla.edu> |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #include <boost/test/unit_test.hpp> |
| 8 | |
| 9 | #include "security/validator-null.hpp" |
| 10 | #include "security/key-chain.hpp" |
| 11 | #include "util/time.hpp" |
| 12 | |
| 13 | |
| 14 | using namespace std; |
| 15 | |
| 16 | namespace ndn { |
| 17 | |
| 18 | BOOST_AUTO_TEST_SUITE(TestValidator) |
| 19 | |
| 20 | void |
| 21 | onValidated(const shared_ptr<const Data>& data) |
| 22 | { BOOST_CHECK(true); } |
| 23 | |
| 24 | void |
| 25 | onValidationFailed(const shared_ptr<const Data>& data) |
| 26 | { BOOST_CHECK(false); } |
| 27 | |
| 28 | BOOST_AUTO_TEST_CASE (Null) |
| 29 | { |
| 30 | KeyChainImpl<SecPublicInfoSqlite3, SecTpmFile> keyChain; |
| 31 | Name identity(string("/TestValidator/Null/") + boost::lexical_cast<std::string>(time::now())); |
| 32 | keyChain.createIdentity(identity); |
| 33 | |
| 34 | Name dataName = identity; |
| 35 | dataName.append("1"); |
| 36 | shared_ptr<Data> data = make_shared<Data>(dataName); |
| 37 | |
| 38 | keyChain.signByIdentity(*data, identity); |
| 39 | |
| 40 | ValidatorNull validator; |
| 41 | |
| 42 | validator.validate(data, |
| 43 | bind(&onValidated, _1), |
| 44 | bind(&onValidationFailed, _1)); |
| 45 | |
| 46 | keyChain.deleteIdentity(identity); |
| 47 | } |
| 48 | |
| 49 | BOOST_AUTO_TEST_SUITE_END() |
| 50 | |
| 51 | } // namespace ndn |