Home
last modified time | relevance | path

Searched refs:fieldExists (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/dports/www/drupal8/drupal-8.9.20/core/tests/Drupal/FunctionalJavascriptTests/Core/
H A DMachineNameTest.php131 $this->assertTrue($assert->fieldExists('id')->hasClass('error'));
132 $this->assertFalse($assert->fieldExists('id2')->hasClass('error'));
135 $assert->fieldExists('Name')->setValue('test 1');
136 $assert->fieldExists('id')->setValue('test_1');
143 $assert->fieldExists('Name')->setValue('duplicate');
145 $assert->fieldExists('id2')->setValue('duplicate2');
151 $this->assertTrue($assert->fieldExists('id')->hasClass('error'));
152 $this->assertTrue($assert->fieldExists('id2')->hasClass('error'));
/dports/www/drupal9/drupal-9.2.10/core/tests/Drupal/FunctionalJavascriptTests/Core/
H A DMachineNameTest.php131 $this->assertTrue($assert->fieldExists('id')->hasClass('error'));
132 $this->assertFalse($assert->fieldExists('id2')->hasClass('error'));
135 $assert->fieldExists('Name')->setValue('test 1');
136 $assert->fieldExists('id')->setValue('test_1');
143 $assert->fieldExists('Name')->setValue('duplicate');
145 $assert->fieldExists('id2')->setValue('duplicate2');
151 $this->assertTrue($assert->fieldExists('id')->hasClass('error'));
152 $this->assertTrue($assert->fieldExists('id2')->hasClass('error'));
/dports/www/drupal9/drupal-9.2.10/core/tests/Drupal/KernelTests/Core/Entity/
H A DEntityDefinitionUpdateTest.php262 …$this->assertTrue($this->database->schema()->fieldExists('entity_test_update', 'new_base_field'), …
395 …$this->assertTrue($schema_handler->fieldExists('entity_test_update', 'new_base_field'), 'Column cr…
403 …$this->assertFalse($schema_handler->fieldExists('entity_test_update', 'new_base_field'), 'Column d…
411 …$assert = $schema_handler->fieldExists('entity_test_update', 'new_base_field__shape') && $schema_h…
425 …$assert = $schema_handler->fieldExists('entity_test_update', 'new_base_field__shape') && $schema_h…
548 …$this->assertFalse($schema_handler->fieldExists($entity_type_id, 'new_base_field'), 'Column delete…
1045 …$this->assertFalse($db_schema->fieldExists('entity_test_update', 'new_base_field'), "New field 'ne…
1051 …$this->assertTrue($db_schema->fieldExists('entity_test_update', 'new_base_field'), 'Installing an …
1061 …$this->assertFalse($db_schema->fieldExists('entity_test_update', 'new_base_field'), "Previous sche…
1063 …$db_schema->fieldExists('entity_test_update', 'new_base_field__value') && $db_schema->fieldExists(…
[all …]
H A DFieldableEntityDefinitionUpdateTest.php508 $this->assertTrue($database_schema->fieldExists($base_table, $revision_key));
509 $this->assertTrue($database_schema->fieldExists($revision_table, $revision_key));
511 $this->assertFalse($database_schema->fieldExists($base_table, $revision_default_key));
547 $this->assertTrue($database_schema->fieldExists($base_table, $langcode_key));
548 $this->assertTrue($database_schema->fieldExists($data_table, $langcode_key));
550 $this->assertFalse($database_schema->fieldExists($base_table, $default_langcode_key));
551 $this->assertTrue($database_schema->fieldExists($data_table, $default_langcode_key));
577 $this->assertTrue($database_schema->fieldExists($base_table, $langcode_key));
578 $this->assertTrue($database_schema->fieldExists($data_table, $langcode_key));
579 $this->assertTrue($database_schema->fieldExists($revision_table, $langcode_key));
[all …]
/dports/www/drupal8/drupal-8.9.20/core/tests/Drupal/KernelTests/Core/Entity/
H A DEntityDefinitionUpdateTest.php263 …$this->assertTrue($this->database->schema()->fieldExists('entity_test_update', 'new_base_field'), …
396 …$this->assertTrue($schema_handler->fieldExists('entity_test_update', 'new_base_field'), 'Column cr…
404 …$this->assertFalse($schema_handler->fieldExists('entity_test_update', 'new_base_field'), 'Column d…
412 …$assert = $schema_handler->fieldExists('entity_test_update', 'new_base_field__shape') && $schema_h…
422 …$assert = !$schema_handler->fieldExists('entity_test_update', 'new_base_field__shape') && !$schema…
426 …$assert = $schema_handler->fieldExists('entity_test_update', 'new_base_field__shape') && $schema_h…
555 …$this->assertFalse($schema_handler->fieldExists($entity_type_id, 'new_base_field'), 'Column delete…
1058 …$this->assertTrue($db_schema->fieldExists('entity_test_update', 'new_base_field'), 'Installing an …
1068 …$this->assertFalse($db_schema->fieldExists('entity_test_update', 'new_base_field'), "Previous sche…
1070 …$db_schema->fieldExists('entity_test_update', 'new_base_field__value') && $db_schema->fieldExists(…
[all …]
H A DFieldableEntityDefinitionUpdateTest.php503 $this->assertTrue($database_schema->fieldExists($base_table, $revision_key));
504 $this->assertTrue($database_schema->fieldExists($revision_table, $revision_key));
506 $this->assertFalse($database_schema->fieldExists($base_table, $revision_default_key));
542 $this->assertTrue($database_schema->fieldExists($base_table, $langcode_key));
543 $this->assertTrue($database_schema->fieldExists($data_table, $langcode_key));
545 $this->assertFalse($database_schema->fieldExists($base_table, $default_langcode_key));
546 $this->assertTrue($database_schema->fieldExists($data_table, $default_langcode_key));
572 $this->assertTrue($database_schema->fieldExists($base_table, $langcode_key));
573 $this->assertTrue($database_schema->fieldExists($data_table, $langcode_key));
574 $this->assertTrue($database_schema->fieldExists($revision_table, $langcode_key));
[all …]
/dports/www/drupal8/drupal-8.9.20/core/modules/media/tests/src/FunctionalJavascript/
H A DMediaTypeCreationTest.php74 $assert_session->fieldExists('Media source');
116 $name_field = $assert_session->fieldExists('Name', $form)->getOuterHtml();
117 $test_source_field = $assert_session->fieldExists('Test source', $form)->getOuterHtml();
119 $date_field = $assert_session->fieldExists('Date', $form)->getOuterHtml();
120 $published_checkbox = $assert_session->fieldExists('Published', $form)->getOuterHtml();
161 $assert_session->fieldExists('Media source');
/dports/www/drupal9/drupal-9.2.10/core/modules/media/tests/src/FunctionalJavascript/
H A DMediaTypeCreationTest.php74 $assert_session->fieldExists('Media source');
116 $name_field = $assert_session->fieldExists('Name', $form)->getOuterHtml();
117 $test_source_field = $assert_session->fieldExists('Test source', $form)->getOuterHtml();
119 $date_field = $assert_session->fieldExists('Date', $form)->getOuterHtml();
120 $published_checkbox = $assert_session->fieldExists('Published', $form)->getOuterHtml();
161 $assert_session->fieldExists('Media source');
/dports/www/drupal9/drupal-9.2.10/core/modules/views/tests/src/Functional/Plugin/
H A DPagerTest.php70 $items_per_page = $this->assertSession()->fieldExists("pager_options[items_per_page]");
75 $offset = $this->assertSession()->fieldExists("pager_options[offset]");
86 $offset = $this->assertSession()->fieldExists("pager_options[offset]");
97 $items_per_page = $this->assertSession()->fieldExists("pager_options[items_per_page]");
102 $offset = $this->assertSession()->fieldExists("pager_options[offset]");
107 $id = $this->assertSession()->fieldExists("pager_options[id]");
112 $total_pages = $this->assertSession()->fieldExists("pager_options[total_pages]");
117 $quantity = $this->assertSession()->fieldExists("pager_options[quantity]");
200 $offset = $this->assertSession()->fieldExists("pager_options[offset]");
205 $id = $this->assertSession()->fieldExists("pager_options[id]");
[all …]
H A DFilterTest.php192 $this->assertSession()->fieldExists('edit-nid-value');
212 $this->assertSession()->fieldExists('edit-nid-value');
213 $this->assertSession()->fieldExists('edit-nid-min');
214 $this->assertSession()->fieldExists('edit-nid-max');
/dports/www/pecl-solr/solr-2.5.1/tests/
H A D059.solrinputdocument_fieldexists.phpt2 SolrInputDocument::fieldExists
11 var_dump($doc->fieldExists('id'));
12 var_dump($doc->fieldExists('features'));
H A D032.solrdocument_fieldexists.phpt2 SolrDocument::fieldExists
17 var_dump($doc->fieldExists('check'));
18 var_dump($doc->fieldExists('nonExistingField'));
/dports/www/drupal9/drupal-9.2.10/core/modules/datetime/tests/src/Functional/
H A DDateFilterTest.php95 $this->assertSession()->fieldExists('edit-field-date-value-value');
115 $this->assertSession()->fieldExists('edit-field-date-value-value');
116 $this->assertSession()->fieldExists('edit-field-date-value-min');
117 $this->assertSession()->fieldExists('edit-field-date-value-max');
/dports/www/drupal9/drupal-9.2.10/core/modules/responsive_image/tests/src/Functional/
H A DResponsiveImageAdminUITest.php90 …$this->assertSession()->fieldExists('keyed_styles[responsive_image_test_module.' . $case[0] . ']['…
92 …$this->assertSession()->fieldExists('keyed_styles[responsive_image_test_module.' . $case[0] . ']['…
94 …$this->assertSession()->fieldExists('keyed_styles[responsive_image_test_module.' . $case[0] . ']['…
100 …$this->assertSession()->fieldExists('keyed_styles[responsive_image_test_module.' . $case[0] . ']['…
/dports/www/drupal8/drupal-8.9.20/core/modules/workspaces/tests/src/Functional/Update/
H A DWorkspacesUpdateTest.php71 $this->assertTrue($schema->fieldExists('node_revision', 'workspace'));
72 $this->assertFalse($schema->fieldExists('node', 'workspace'));
73 $this->assertFalse($schema->fieldExists('node_field_data', 'workspace'));
74 $this->assertFalse($schema->fieldExists('node_field_revision', 'workspace'));
/dports/www/drupal9/drupal-9.2.10/core/tests/Drupal/FunctionalTests/Datetime/
H A DTimestampTest.php121 $this->assertSession()->fieldExists('field_timestamp[0][value][date]');
123 $this->assertSession()->fieldExists('field_timestamp[0][value][time]');
137 $this->assertSession()->fieldExists('field_timestamp[0][value][date]');
139 $this->assertSession()->fieldExists('field_timestamp[0][value][time]');
/dports/www/drupal9/drupal-9.2.10/core/modules/comment/tests/src/Functional/
H A DCommentStatusFieldAccessTest.php92 $assert->fieldExists('subject[0][value]');
95 $assert->fieldExists('comment[0][status]');
97 $assert->fieldExists('subject[0][value]');
/dports/www/drupal8/drupal-8.9.20/core/modules/comment/tests/src/Functional/
H A DCommentStatusFieldAccessTest.php94 $assert->fieldExists('subject[0][value]');
97 $assert->fieldExists('comment[0][status]');
101 $assert->fieldExists('subject[0][value]');
/dports/www/drupal8/drupal-8.9.20/core/tests/Drupal/FunctionalTests/Datetime/
H A DTimestampTest.php122 $this->assertSession()->fieldExists('field_timestamp[0][value][date]');
124 $this->assertSession()->fieldExists('field_timestamp[0][value][time]');
138 $this->assertSession()->fieldExists('field_timestamp[0][value][date]');
140 $this->assertSession()->fieldExists('field_timestamp[0][value][time]');
/dports/www/drupal9/drupal-9.2.10/core/modules/comment/tests/src/Functional/Views/
H A DCommentAdminTest.php58 $this->assertSession()->fieldExists('subject');
59 $this->assertSession()->fieldExists('author_name');
60 $this->assertSession()->fieldExists('langcode');
114 $this->assertSession()->fieldExists('subject');
115 $this->assertSession()->fieldExists('author_name');
116 $this->assertSession()->fieldExists('langcode');
/dports/www/drupal9/drupal-9.2.10/core/modules/image/tests/src/Functional/
H A DImageStyleDeleteTest.php36 $this->assertSession()->fieldExists('replacement');
59 $this->assertSession()->fieldExists('replacement');
78 $this->assertSession()->fieldExists('replacement');
/dports/www/mediawiki136/mediawiki-1.36.3/extensions/OATHAuth/src/Hook/LoadExtensionSchemaUpdates/
H A DUpdateTables.php148 if ( !$db->fieldExists( 'oathauth_users', 'secret', __METHOD__ ) ) {
201 if ( !$db->fieldExists( 'oathauth_users', 'data', __METHOD__ ) ) {
242 if ( !$db->fieldExists( 'oathauth_users', 'data' ) ) {
290 if ( !$db->fieldExists( 'oathauth_users', 'secret_reset', __METHOD__ ) ) {
/dports/www/mediawiki137/mediawiki-1.37.1/extensions/OATHAuth/src/Hook/LoadExtensionSchemaUpdates/
H A DUpdateTables.php148 if ( !$db->fieldExists( 'oathauth_users', 'secret', __METHOD__ ) ) {
201 if ( !$db->fieldExists( 'oathauth_users', 'data', __METHOD__ ) ) {
242 if ( !$db->fieldExists( 'oathauth_users', 'data' ) ) {
290 if ( !$db->fieldExists( 'oathauth_users', 'secret_reset', __METHOD__ ) ) {
/dports/www/drupal8/drupal-8.9.20/core/modules/system/tests/src/Functional/Entity/Update/
H A DMoveRevisionMetadataFieldsUpdateTest.php55 …$this->assertFalse($database_schema->fieldExists($entity_type->getDataTable(), $revision_metadata_…
56 …$this->assertFalse($database_schema->fieldExists($entity_type->getRevisionDataTable(), $revision_m…
59 …$this->assertFalse($database_schema->fieldExists($entity_type->getBaseTable(), $revision_metadata_…
61 …$this->assertTrue($database_schema->fieldExists($entity_type->getRevisionTable(), $revision_metada…
/dports/www/drupal9/drupal-9.2.10/core/modules/language/tests/src/Functional/
H A DLanguageBlockSettingsVisibilityTest.php33 $this->assertSession()->fieldExists("edit-visibility-language-langcodes-en");
34 $this->assertSession()->fieldExists("edit-visibility-language-langcodes-hu");

12345678910>>...13