You are here

function OembedEndpointTestCase::testOembedEndpoint in oEmbed 7

Same name and namespace in other branches
  1. 8 modules/oembedprovider/oembedprovider.test \OembedEndpointTestCase::testOembedEndpoint()
  2. 7.0 oembedprovider/oembedprovider.test \OembedEndpointTestCase::testOembedEndpoint()

File

modules/oembedprovider/oembedprovider.test, line 74

Class

OembedEndpointTestCase

Code

function testOembedEndpoint() {
  $file = current($this
    ->drupalGetTestFiles('image'));
  $file->uid = 1;
  $file->status = FILE_STATUS_PERMANENT;
  file_save($file);
  $node = $this
    ->drupalCreateNode();
  $this
    ->assertTrue(node_load($node->nid), t('Node created.'));
  foreach (array(
    'json',
    'xml',
  ) as $format) {
    ctools_include('plugins');
    $url = url('file/' . $file->fid, array(
      'absolute' => TRUE,
    ));
    $options = array(
      'query' => array(
        'url' => $url,
        'format' => $format,
      ),
    );
    $this
      ->drupalGet('oembed/endpoint', $options);
    if ($format == 'json') {
      $embed = drupal_json_decode($this
        ->drupalGetContent());
    }
    else {
      if ($format == 'xml') {
        $xml = @new SimpleXMLElement($this
          ->drupalGetContent());
        $embed = array();
        foreach ($xml as $key => $value) {
          $embed[$key] = (string) $value;
        }
      }
    }
    $errors = oembed_validate_response($embed);
    $this
      ->assertTrue(empty($errors), 'oEmbed response is valid');
    $output = theme('oembed__photo', array(
      'embed' => $embed,
    ));
    $vars = array(
      'path' => $file->uri,
      'alt' => oembed_alt_attr($embed),
      'width' => $file->image_dimensions['width'],
      'height' => $file->image_dimensions['height'],
    );
    $this
      ->assertEqual($output, theme('image', $vars), t('Expected img tag was found.'));
    $url = url('node/' . $node->nid, array(
      'absolute' => TRUE,
    ));
    $options = array(
      'query' => array(
        'url' => $url,
        'format' => $format,
      ),
    );
    $this
      ->drupalGet('oembed/endpoint', $options);
    if ($format == 'json') {
      $embed = drupal_json_decode($this
        ->drupalGetContent());
    }
    else {
      if ($format == 'xml') {
        $xml = @new SimpleXMLElement($this
          ->drupalGetContent());
        $embed = array();
        foreach ($xml as $key => $value) {
          $embed[$key] = (string) $value;
        }
      }
    }
    $errors = oembed_validate_response($embed);
    $this
      ->assertTrue(empty($errors), 'oEmbed response is valid');
    $output = theme('oembed__rich', array(
      'embed' => $embed,
    ));
    $node = node_load($node->nid);
    $this
      ->assertRaw($node->title, t('Node title appears in the output.'));
  }
}