views_plugin_style_mapping.test
4.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
/**
* @file
* Definition of ViewsPluginStyleMappingTest.
*/
/**
* Tests the default/mapping row style.
*/
class ViewsPluginStyleMappingTest extends ViewsPluginStyleTestBase {
public static function getInfo() {
return array(
'name' => 'Style: Mapping',
'description' => 'Test mapping style functionality.',
'group' => 'Views Plugins',
);
}
public function setUp() {
parent::setUp();
// Reset the plugin data.
views_fetch_plugin_data(NULL, NULL, TRUE);
}
protected function viewsPlugins() {
return array(
'style' => array(
'test_mapping' => array(
'title' => t('Field mapping'),
'help' => t('Maps specific fields to specific purposes.'),
'handler' => 'views_test_plugin_style_test_mapping',
'path' => drupal_get_path('module', 'views_test') . '/test_plugins',
'theme' => 'views_view_mapping_test',
'theme path' => drupal_get_path('module', 'views_test'),
'theme file' => 'views_test.module',
'uses row plugin' => FALSE,
'uses fields' => TRUE,
'uses options' => TRUE,
'uses grouping' => FALSE,
'type' => 'normal',
),
),
);
}
/**
* Overrides ViewsTestCase::getBasicView().
*/
protected function getBasicView() {
$view = parent::getBasicView();
$view->display['default']->handler->override_option('style_plugin', 'test_mapping');
$view->display['default']->handler->override_option('style_options', array(
'mapping' => array(
'name_field' => 'name',
'numeric_field' => array(
'age',
),
'title_field' => 'name',
'toggle_numeric_field' => TRUE,
'toggle_title_field' => TRUE,
),
));
$view->display['default']->handler->override_option('fields', array(
'age' => array(
'id' => 'age',
'table' => 'views_test',
'field' => 'age',
'relationship' => 'none',
),
'name' => array(
'id' => 'name',
'table' => 'views_test',
'field' => 'name',
'relationship' => 'none',
),
'job' => array(
'id' => 'job',
'table' => 'views_test',
'field' => 'job',
'relationship' => 'none',
),
));
return $view;
}
/**
* Verifies that the fields were mapped correctly.
*/
public function testMappedOutput() {
$view = $this->getBasicView();
$output = $this->mappedOutputHelper($view);
$this->assertTrue(strpos($output, 'job') === FALSE, 'The job field is added to the view but not in the mapping.');
$view = $this->getBasicView();
$view->display['default']->display_options['style_options']['mapping']['name_field'] = 'job';
$output = $this->mappedOutputHelper($view);
$this->assertTrue(strpos($output, 'job') !== FALSE, 'The job field is added to the view and is in the mapping.');
}
/**
* Tests the mapping of fields.
*
* @param view $view
* The view to test.
*
* @return string
* The view rendered as HTML.
*/
protected function mappedOutputHelper($view) {
$rendered_output = $view->preview();
$this->storeViewPreview($rendered_output);
$rows = $this->elements->body->div->div->div;
$data_set = $this->dataSet();
$count = 0;
foreach ($rows as $row) {
$attributes = $row->attributes();
$class = (string) $attributes['class'][0];
$this->assertTrue(strpos($class, 'views-row-mapping-test') !== FALSE, 'Make sure that each row has the correct CSS class.');
foreach ($row->div as $field) {
// Split up the field-level class, the first part is the mapping name
// and the second is the field ID.
$field_attributes = $field->attributes();
$name = strtok((string) $field_attributes['class'][0], '-');
$field_id = strtok('-');
// The expected result is the mapping name and the field value,
// separated by ':'.
$expected_result = $name . ':' . $data_set[$count][$field_id];
$actual_result = (string) $field;
$this->assertIdentical($expected_result, $actual_result, format_string('The fields were mapped successfully: %name => %field_id', array('%name' => $name, '%field_id' => $field_id)));
}
$count++;
}
return $rendered_output;
}
}