Missing file.
authorCarl Hetherington <cth@carlh.net>
Sat, 6 Jul 2013 19:30:26 +0000 (20:30 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 6 Jul 2013 19:30:26 +0000 (20:30 +0100)
test/decryption_test.cc [new file with mode: 0644]

diff --git a/test/decryption_test.cc b/test/decryption_test.cc
new file mode 100644 (file)
index 0000000..6870a28
--- /dev/null
@@ -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);
+}