1 views_module.test public ViewsModuleTest::test_views_trim_text()

File

core/modules/views/tests/views_module.test, line 31
Definition of ViewsModuleTest.

Class

ViewsModuleTest
Tests basic functions from the Views module.

Code

public function test_views_trim_text() {
  views_include('utility');

  // Test unicode, @see http://drupal.org/node/513396#comment-2839416
  $text = array(
    // cspell:disable
    'Tuy nhiên, những hi vọng',
    'Giả sử chúng tôi có 3 Apple',
    'siêu nhỏ này là bộ xử lý',
    'Di động của nhà sản xuất Phần Lan',
    'khoảng cách từ đại lí đến',
    'của hãng bao gồm ba dòng',
    'сд асд асд ас',
    'асд асд асд ас'
    // cspell:enable
  );
  // Just test maxlength without word boundary.
  $alter = array(
    'max_length' => 10,
  );
  $expect = array(
    // cspell:disable
    'Tuy nhiên,',
    'Giả sử chú',
    'siêu nhỏ n',
    'Di động củ',
    'khoảng các',
    'của hãng b',
    'сд асд асд',
    'асд асд ас',
    // cspell:enable
  );

  foreach ($text as $key => $line) {
    $result_text = views_trim_text($alter, $line);
    $this->assertEqual($result_text, $expect[$key]);
  }

  // Test also word_boundary
  $alter['word_boundary'] = TRUE;
  $expect = array(
    // cspell:disable
    'Tuy nhiên',
    'Giả sử',
    'siêu nhỏ',
    'Di động',
    'khoảng',
    'của hãng',
    'сд асд',
    'асд асд',
    // cspell:enable
  );

  foreach ($text as $key => $line) {
    $result_text = views_trim_text($alter, $line);
    $this->assertEqual($result_text, $expect[$key]);
  }
}