private void DoAllTests()
        {
            var format = _th.Job.Profile.OutputFormat;

            PdfVersionTester.CheckPDFVersion(_th.Job, _pdfProcessor);

            SigningTester.TestSignature(_th.Job);

            if (_th.Profile.BackgroundPage.Enabled)
            {
                BackgroundPageTester.BackgroundOnPage(_th.Job);
            }

            /*
             * if (format == OutputFormat.PdfA1B || format == OutputFormat.PdfA2B)
             *  XmpMetadataTester.CheckForXMPMetadataUpdateStrings(_th.Job);
             */

            if (format != OutputFormat.PdfX)
            {
                PDFValidation.ValidatePdf(_th.Job);
            }

            //Must be last because it changes the encryption
            if ((format == OutputFormat.Pdf) && (_th.Profile.PdfSettings.Security.Enabled))
            {
                EncryptionTester.DoSecurityTest(_th.Job, IsIText);
                MakePasswordTests(_th.Job.Profile.OutputFormat);
            }
        }
Exemplo n.º 2
0
 private void DoAllTheTesting(Job job)
 {
     PdfVersionTester.CheckPDFVersion(job, _pdfProcessor);
     EncryptionTester.DoSecurityTest(_th.Job, IsIText);
     SigningTester.TestSignature(job);
     MakePasswordTests();
 }
Exemplo n.º 3
0
        private void TestEncryption()
        {
            _pdfProcessor.ProcessPdf(_th.Job);

            PdfVersionTester.CheckPDFVersion(_th.Job, _pdfProcessor);
            EncryptionTester.DoPasswordTest(_th.Job);
            EncryptionTester.DoSecurityTest(_th.Job, IsIText);
        }
        public void EncryptionAndSigning()
        {
            GenerateGsJob_WithSettedOutput(TestFile.PDFCreatorTestpagePDF); //Disables pdf metadata update
            _th.Job.Profile.PdfSettings.Security.Enabled  = true;
            _th.Job.Profile.PdfSettings.Signature.Enabled = true;
            _th.Job.Profile.BackgroundPage.Enabled        = false;

            _pdfProcessor.ProcessPdf(_th.Job);

            EncryptionTester.DoSecurityTest(_th.Job, IsIText);
            SigningTester.TestSignature(_th.Job);
        }
Exemplo n.º 5
0
        public void EncryptionAndBackground()
        {
            GenerateGsJob_WithSettedOutput(TestFile.PDFCreatorTestpage_GS9_19_PDF); //Disables pdf metadata update
            _th.Job.Profile.PdfSettings.Security.Enabled  = true;
            _th.Job.Profile.PdfSettings.Signature.Enabled = false;
            _th.Job.Profile.BackgroundPage.Enabled        = true;

            _pdfProcessor.ProcessPdf(_th.Job);

            PdfVersionTester.CheckPDFVersion(_th.Job, _pdfProcessor);
            EncryptionTester.DoSecurityTest(_th.Job, IsIText);
            BackgroundPageTester.BackgroundOnPage(_th.Job);
        }
Exemplo n.º 6
0
        public void TestEncryptionEnableFalse()
        {
            _th.Profile.PdfSettings.Security.Enabled  = false;
            _th.Profile.PdfSettings.Signature.Enabled = false;

            _th.Profile.PdfSettings.Security.RequireUserPassword = true;

            _th.Profile.PdfSettings.Security.AllowToEditAssembly          = false;
            _th.Profile.PdfSettings.Security.AllowToEditComments          = false;
            _th.Profile.PdfSettings.Security.AllowToCopyContent           = true;
            _th.Profile.PdfSettings.Security.AllowToFillForms             = true;
            _th.Profile.PdfSettings.Security.AllowToEditTheDocument       = false;
            _th.Profile.PdfSettings.Security.AllowPrinting                = false;
            _th.Profile.PdfSettings.Security.RestrictPrintingToLowQuality = true;
            _th.Profile.PdfSettings.Security.AllowScreenReader            = true;

            _th.Profile.PdfSettings.Security.EncryptionLevel = EncryptionLevel.Aes128Bit;

            _th.GenerateGsJob(PSfiles.ThreePDFCreatorTestpages, OutputFormat.Pdf);

            _th.RunGsJob();

            EncryptionTester.DoSecurityTest(_th.Job, false);
        }