View source
<?php
namespace Drupal\Tests\commerce_migrate_ubercart\Functional\uc6;
use Drupal\Tests\commerce_migrate_ubercart\Functional\MigrateUpgradeReviewPageTestBase;
class MigrateUpgradeReviewPageTest extends MigrateUpgradeReviewPageTestBase {
public static $modules = [
'action',
'address',
'commerce',
'commerce_price',
'commerce_store',
'commerce_order',
'commerce_product',
'commerce_migrate',
'commerce_migrate_ubercart',
'commerce_shipping',
'entity',
'entity_reference_revisions',
'inline_entity_form',
'path',
'profile',
'physical',
'state_machine',
'text',
'views',
];
protected function setUp() {
parent::setUp();
$this
->loadFixture(drupal_get_path('module', 'commerce_migrate_ubercart') . '/tests/fixtures/uc6.php');
}
protected function getSourceBasePath() {
return '';
}
protected function getAvailablePaths() {
return [
'block',
'blog',
'blogapi',
'calendarsignup',
'color',
'comment',
'contact',
'content',
'content_copy',
'content_multigroup',
'content_permissions',
'dblog',
'email',
'fieldgroup',
'filefield',
'filefield_meta',
'filter',
'help',
'imageapi',
'imageapi_gd',
'imageapi_imagemagick',
'imagecache',
'imagecache_ui',
'imagefield',
'jquery_ui',
'link',
'menu',
'node',
'nodereference',
'openid',
'optionwidgets',
'path',
'phone',
'php',
'ping',
'poll',
'profile',
'search',
'system',
'taxonomy',
'text',
'throttle',
'tracker',
'translation',
'trigger',
'uc_attribute',
'uc_flatrate',
'uc_order',
'uc_product',
'uc_store',
'upload',
'user',
'userreference',
'number',
'views_ui',
];
}
protected function getMissingPaths() {
return [
'aggregator',
'book',
'ca',
'forum',
'i18n',
'i18nblocks',
'i18ncck',
'i18ncontent',
'i18nmenu',
'i18npoll',
'i18nprofile',
'i18nstrings',
'i18nsync',
'i18ntaxonomy',
'i18nviews',
'image',
'image_attach',
'image_gallery',
'image_im_advanced',
'image_import',
'locale',
'statistics',
'syslog',
'test_gateway',
'token',
'tokenSTARTER',
'token_actions',
'uc_2checkout',
'uc_authorizenet',
'uc_cart',
'uc_cart_links',
'uc_catalog',
'uc_credit',
'uc_cybersource',
'uc_file',
'uc_google_checkout',
'uc_googleanalytics',
'uc_payment',
'uc_payment_pack',
'uc_paypal',
'uc_product_kit',
'uc_quote',
'uc_reports',
'uc_roles',
'uc_shipping',
'uc_stock',
'uc_tax_report',
'uc_taxes',
'uc_ups',
'uc_usps',
'uc_weightquote',
'update',
'views',
];
}
}