diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-06 20:30:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-06 20:30:26 +0100 |
| commit | 3340b9a66ca2153daf8568ae147abcc9c5983323 (patch) | |
| tree | 5f515cb47c5b4c9aa0fa123f167cd02a9a302d3a /test/decryption_test.cc | |
| parent | dcccb2dd1d180b8be67e539395dccbe82b0fb5a8 (diff) | |
Missing file.
Diffstat (limited to 'test/decryption_test.cc')
| -rw-r--r-- | test/decryption_test.cc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/decryption_test.cc b/test/decryption_test.cc new file mode 100644 index 00000000..6870a286 --- /dev/null +++ b/test/decryption_test.cc @@ -0,0 +1,33 @@ +/* + Copyright (C) 2013 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 + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +BOOST_AUTO_TEST_CASE (is_encrypted_test) +{ + boost::filesystem::path plaintext_path = test_corpus; + plaintext_path /= "TONEPLATES-SMPTE-PLAINTEXT_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV"; + libdcp::DCP plaintext (plaintext_path.string ()); + plaintext.read (); + BOOST_CHECK_EQUAL (plaintext.encrypted (), false); + + boost::filesystem::path encrypted_path = test_corpus; + encrypted_path /= "TONEPLATES-SMPTE-ENCRYPTED_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV"; + libdcp::DCP encrypted (encrypted_path.string ()); + encrypted.read (); + BOOST_CHECK_EQUAL (encrypted.encrypted (), true); +} |
