From 80244ecd1fa49d1147e64ff8ffc9b310e635be34 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 8 Dec 2015 15:39:33 +0100 Subject: Add a PDF-specific test --- test/clitest.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/clitest.py b/test/clitest.py index ccac675..195defa 100644 --- a/test/clitest.py +++ b/test/clitest.py @@ -35,6 +35,14 @@ class TestRemovecli(test.MATTest): current_file = mat.create_class_file(dirty, False, add2archive=True, low_pdf_quality=True) self.assertTrue(current_file.is_clean()) + def test_remove_fileformat_specific_options(self): + """ test metadata removal with fileformat-specific options """ + for _, dirty in self.file_list: # can't be faster than that :/ + if dirty.endswith('pdf'): + subprocess.call([MAT_PATH, '--low-pdf-quality', dirty]) + current_file = mat.create_class_file(dirty, False, low_pdf_quality=True) + self.assertTrue(current_file.is_clean()) + def test_remove_empty(self): """Test removal with clean files\n""" for clean, _ in self.file_list: -- cgit v1.3