public void SetUp() { var bootstrapper = new IntegrationTestBootstrapper(); var container = bootstrapper.ConfigureContainer(); _th = container.GetInstance <TestHelper>(); _th.InitTempFolder("PDFProcessing basic test"); PdfProcessor = new ITextPdfProcessor(new FileWrap(), new DefaultProcessingPasswordsProvider()); }
public void SetUp() { var bootstrapper = new IntegrationTestBootstrapper(); var container = bootstrapper.ConfigureContainer(); _th = container.GetInstance <TestHelper>(); _th.InitTempFolder("PDFProcessing encryption test"); _testFile = _th.GenerateTestFile(TestFile.PDFCreatorTestpagePDF); _passwords = new JobPasswords(); _passwords.PdfOwnerPassword = "******"; _passwords.PdfUserPassword = "******"; PdfProcessor = new ITextPdfProcessor(new FileWrap(), new DefaultProcessingPasswordsProvider()); }
public void SetUp() { var bootstrapper = new IntegrationTestBootstrapper(); var container = bootstrapper.ConfigureContainer(); _th = container.GetInstance <TestHelper>(); _th.InitTempFolder("PDFProcessing Signing Test"); _th.GenerateGsJob_WithSettedOutput(TestFile.ThreePDFCreatorTestpagesPDF); _th.Job.Passwords.PdfSignaturePassword = "******"; _th.Job.Profile.PdfSettings.Signature.CertificateFile = _th.GenerateTestFile(TestFile.CertificationFileP12); _th.Job.Profile.PdfSettings.Signature.Enabled = true; PdfProcessor = new ITextPdfProcessor(new FileWrap(), new DefaultProcessingPasswordsProvider()); }
public void SetUp() { var bootstrapper = new IntegrationTestBootstrapper(); var container = bootstrapper.ConfigureContainer(); _th = container.GetInstance <TestHelper>(); _th.InitTempFolder("PDFProcessing XMP metadata update test"); _th.GenerateGsJob_WithSettedOutput(TestFile.PDFCreatorTestpagePdfA); //Settings of the previously created outputfile _th.Job.JobInfo.Metadata.Title = "Test Title"; _th.Job.JobInfo.Metadata.Subject = "Test Subject"; _th.Job.JobInfo.Metadata.Keywords = "Test Keywords"; _th.Job.JobInfo.Metadata.Author = "Test Author"; PDFProcessor = new ITextPdfProcessor(new FileWrap(), new DefaultProcessingPasswordsProvider()); }
public void SetUp() { var bootstrapper = new IntegrationTestBootstrapper(); var container = bootstrapper.ConfigureContainer(); _th = container.GetInstance <TestHelper>(); _th.InitTempFolder("PDFProcessing combined test"); _th.GenerateGsJob_WithSettedOutput(TestFile.PDFCreatorTestpagePdfA); _th.Job.Profile.BackgroundPage.File = _th.GenerateTestFile(TestFile.Background3PagesPDF); _th.Job.Profile.PdfSettings.Signature.CertificateFile = _th.GenerateTestFile(TestFile.CertificationFileP12); _th.Job.Passwords.PdfUserPassword = "******"; _th.Job.Passwords.PdfOwnerPassword = "******"; _th.Job.Passwords.PdfSignaturePassword = "******"; _th.Job.JobInfo.Metadata.Title = "Test Title"; _th.Job.JobInfo.Metadata.Subject = "Test Subject"; _th.Job.JobInfo.Metadata.Keywords = "Test Keywords"; _th.Job.JobInfo.Metadata.Author = "Test Author"; PdfProcessor = new ITextPdfProcessor(new FileWrap(), new DefaultProcessingPasswordsProvider()); }