// Migrated a textarea.
$field_storage = FieldStorageConfig::
load('user.profile_biography'
);
$this->
assertSame('text_long',
$field_storage->
getType(), 'Field type is text_long.'
);
// Migrated checkbox field.
$field_storage = FieldStorageConfig::
load('user.profile_sell_address'
);
$this->
assertSame('boolean',
$field_storage->
getType(), 'Field type is boolean.'
);
// Migrated selection field.
$field_storage = FieldStorageConfig::
load('user.profile_sold_to'
);
$this->
assertSame('list_string',
$field_storage->
getType(), 'Field type is list_string.'
);
$settings =
$field_storage->
getSettings();
$this->
assertEquals(['Pill spammers' => 'Pill spammers', 'Fitness spammers' => 'Fitness spammers', 'Back\\slash' => 'Back\\slash', 'Forward/slash' => 'Forward/slash', 'Dot.in.the.middle' => 'Dot.in.the.middle', 'Faithful servant' => 'Faithful servant', 'Anonymous donor' => 'Anonymous donor'
],
$settings['allowed_values'
]);
$this->
assertSame('list_string',
$field_storage->
getType(), 'Field type is list_string.'
);
// Migrated list field.
$field_storage = FieldStorageConfig::
load('user.profile_bands'
);
$this->
assertSame('text',
$field_storage->
getType(), 'Field type is text.'
);
$this->
assertSame(-1,
$field_storage->
getCardinality(), 'List field has correct cardinality'
);
// Migrated URL field.
$field_storage = FieldStorageConfig::
load('user.profile_blog'
);
$this->
assertSame('link',
$field_storage->
getType(), 'Field type is link.'
);