/** * Tests of the job item review process. */ public function testContinuous() { // Test that continuous jobs are shown in the job overview. $this->container->get('module_installer')->install(['tmgmt_file'], TRUE); $non_continuous_translator = Translator::create(['name' => strtolower($this->randomMachineName()), 'label' => $this->randomMachineName(), 'plugin' => 'file', 'remote_languages_mappings' => [], 'settings' => []]); $non_continuous_translator->save(); $continuous_job = $this->createJob('en', 'de', 0, ['label' => 'Continuous job', 'job_type' => 'continuous']); $this->drupalGet('admin/tmgmt/jobs', ['query' => ['state' => '6']]); $this->assertText($continuous_job->label(), 'Continuous job is displayed on job overview page with status filter on continuous jobs.'); $this->drupalGet('admin/tmgmt/jobs', ['query' => ['state' => 'in_progress']]); $this->assertNoText($continuous_job->label(), 'Continuous job is not displayed on job overview page if status filter is on in progress jobs.'); // Test that there are source items checkboxes on a continuous job form. $this->drupalGet('admin/tmgmt/jobs/' . $continuous_job->id()); $this->assertText($continuous_job->label()); $this->assertNoFieldChecked('edit-continuous-settings-content-node-enabled', 'There is content checkbox and it is not checked yet.'); $this->assertNoFieldChecked('edit-continuous-settings-content-node-bundles-article', 'There is article checkbox and it is not checked yet.'); $this->assertNoFieldChecked('edit-continuous-settings-content-node-bundles-page', 'There is page checkbox and it is not checked yet.'); // Enable Article source item for continuous job. $edit_continuous_job = ['continuous_settings[content][node][enabled]' => TRUE, 'continuous_settings[content][node][bundles][article]' => TRUE]; $this->drupalPostForm(NULL, $edit_continuous_job, t('Save job')); // Test that continuous settings configuration is saved correctly. $updated_continuous_job = Job::load($continuous_job->id()); $job_continuous_settings = $updated_continuous_job->getContinuousSettings(); $this->assertEqual($job_continuous_settings['content']['node']['enabled'], 1, 'Continuous settings configuration for node is saved correctly.'); $this->assertEqual($job_continuous_settings['content']['node']['bundles']['article'], 1, 'Continuous settings configuration for article is saved correctly.'); $this->assertEqual($job_continuous_settings['content']['node']['bundles']['page'], 0, 'Continuous settings configuration for page is saved correctly.'); // Test that continuous settings checkboxes are checked correctly. $this->clickLink('Manage'); $this->assertText($continuous_job->label()); $this->assertFieldChecked('edit-continuous-settings-content-node-enabled', 'Content checkbox is now checked.'); $this->assertFieldChecked('edit-continuous-settings-content-node-bundles-article', 'Article checkbox now checked.'); $this->assertNoFieldChecked('edit-continuous-settings-content-node-bundles-page', 'Page checkbox is not checked.'); // Create continuous job through the form. $this->loginAsTranslator(['access administration pages', 'create translation jobs', 'submit translation jobs', 'access user profiles'], TRUE); $owner = $this->drupalCreateUser($this->translator_permissions); $this->drupalGet('admin/tmgmt/continuous_jobs/continuous_add'); $this->assertResponse(403, 'Access denied'); $this->loginAsAdmin(); $this->drupalGet('admin/tmgmt/continuous_jobs/continuous_add'); $this->assertNoText($non_continuous_translator->label()); $continuous_job_label = strtolower($this->randomMachineName()); $edit_job = ['label[0][value]' => $continuous_job_label, 'target_language' => 'de', 'uid' => $owner->getDisplayName(), 'translator' => $this->default_translator->id()]; $this->drupalPostForm(NULL, $edit_job, t('Save job')); $this->assertText($continuous_job_label, 'Continuous job was created.'); // Test that previous created job is continuous job. $this->drupalGet('admin/tmgmt/jobs'); $this->assertText($continuous_job_label, 'Created continuous job is displayed on job overview page.'); // Test that job overview page with status to continuous does not have // Submit link. $this->drupalGet('admin/tmgmt/jobs', ['query' => ['state' => Job::STATE_CONTINUOUS]]); $this->assertNoLink('Submit', 'There is no Submit link on job overview with status to continuous.'); // Test that all unnecessary fields and buttons do not exist on continuous // job edit form. $this->clickLink('Manage', 0); $this->assertText($continuous_job_label); $this->assertFieldById('edit-uid', $owner->getDisplayName() . ' (' . $owner->id() . ')', 'Job owner set correctly'); $this->assertNoRaw('<label for="edit-translator">Provider</label>', 'There is no Provider info field on continuous job edit form.'); $this->assertNoRaw('<label for="edit-word-count">Total word count</label>', 'There is no Total word count info field on continuous job edit form.'); $this->assertNoRaw('<label for="edit-tags-count">Total HTML tags count</label>', 'There is no Total HTML tags count info field on continuous job edit form.'); $this->assertNoRaw('<label for="edit-created">Created</label>', 'There is no Created info field on continuous job edit form.'); $this->assertNoRaw('id="edit-job-items-wrapper"', 'There is no Job items field on continuous job edit form.'); $this->assertNoRaw('<div class="tmgmt-color-legend clearfix">', 'There is no Item state legend on continuous job edit form.'); $this->assertNoRaw('id="edit-messages"', 'There is no Translation Job Messages field on continuous job edit form.'); $this->assertNoFieldById('edit-abort-job', NULL, 'There is no Abort job button.'); $this->assertNoFieldById('edit-submit', NULL, 'There is no Submit button.'); $this->assertNoFieldById('edit-resubmit-job', NULL, 'There is Resubmit job button.'); // Remove continuous jobs and assert there is no filter displayed. $this->loginAsAdmin(); $continuous_job->delete(); $this->drupalGet('admin/tmgmt/jobs'); $this->clickLink(t('Delete')); $this->drupalPostForm(NULL, array(), t('Delete')); $this->drupalGet('admin/tmgmt/job_items'); $this->assertNoText(t('Job type')); $this->assertNoFieldByName('job_type'); // Test that the empty text is displayed. $this->drupalGet('admin/tmgmt/job_items', array('query' => array('state' => 5))); $this->assertText(t('No job items for the current selection.')); }
/** * Creates, saves and returns a translator. * * @return \Drupal\tmgmt\TranslatorInterface */ function createTranslator(array $values = []) { $translator = Translator::create($values + ['name' => strtolower($this->randomMachineName()), 'label' => $this->randomMachineName(), 'plugin' => 'test_translator', 'remote_languages_mappings' => [], 'settings' => empty($values['plugin']) ? ['key' => $this->randomMachineName(), 'another_key' => $this->randomMachineName()] : []]); $this->assertEqual(SAVED_NEW, $translator->save()); return $translator; }