gstreamer_core/tsrc/check/gst/gsturi/src/gsturi.c
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:16:41 +0100
branchRCL_3
changeset 30 7e817e7e631c
parent 29 567bb019e3e3
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201010 Kit: 201035

/* GStreamer unit tests for GstURI
 *
 * Copyright (C) 2007 Tim-Philipp Müller <tim centricular net>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */


#include <gst/gst_global.h>
#include <gst/check/gstcheck.h>
#include <e32def.h>

#define LOG_FILE "c:\\logs\\gsturi_logs.txt" 
#include "std_log_result.h" 
#define LOG_FILENAME_LINE __FILE__, __LINE__

GstElement *parser,*bin,*sink,*pipeline,*source,*filter;

void create_xml(int result)
{
    if(result)
        assert_failed = 1;
    
    testResultXml(xmlfile);
    close_log_file();
}

void test_protocol_case()
{
  
  GstElement *element;
  
  xmlfile = "gsturi_test_protocol_case";
  std_log(LOG_FILENAME_LINE, "Test Started gsturi_test_protocol_case");

  element = gst_element_make_from_uri (GST_URI_SRC, "file://c:\\data\\gstreamer\\warning.wav", NULL);

  /* no element? probably no registry, bail out */
  if (element == NULL)
    return;

  gst_object_unref (element);
  element = gst_element_make_from_uri (GST_URI_SRC, "FILE://c:\\data\\gstreamer\\warning.wav", NULL);
  fail_unless (element != NULL,
      "Got source for 'file://' URI but not for 'FILE://' URI");
  gst_object_unref (element);
  
  std_log(LOG_FILENAME_LINE, "Test Successful");
  create_xml(0);
}

void test_uri_get_location()
{
  gchar *l;
  
  xmlfile = "gsturi_test_uri_get_location";
  std_log(LOG_FILENAME_LINE, "Test Started gsturi_test_uri_get_location");


  /* URI with no location should return empty string */
  l = gst_uri_get_location ("dvd://");
  fail_unless (l != NULL);
  fail_unless_equals_string (l, "");
  g_free (l);

  /* URI with hostname */
  l = gst_uri_get_location ("smb://supercomputer/path/to/file");
  fail_unless (l != NULL);
  fail_unless_equals_string (l, "supercomputer/path/to/file");
  g_free (l);

  /* URI */
  l = gst_uri_get_location ("file://c:\\data\\gstreamer\\khuda.wav");
  fail_unless (l != NULL);
  fail_unless_equals_string (l, "c:\\data\\gstreamer\\khuda.wav");
  g_free (l);

  /* unescaping */
  l = gst_uri_get_location ("file://c:\\path\\to\\some%20file");
  fail_unless (l != NULL);
  fail_unless_equals_string (l, "c:\\path\\to\\some file");
  g_free (l);
  
  std_log(LOG_FILENAME_LINE, "Test Successful");
  create_xml(0);
}

#ifdef G_OS_WIN32
void test_win32_uri()
{
  gchar *uri, *l;

  uri = g_strdup ("file://c:\\data\\gstreamer\\khuda.wav");
  l = gst_uri_get_location (uri);
  fail_unless (l != NULL);
  /* fail_unless_equals_string will screw up here in the failure case
   * because the string constant will be appended to the printf format
   * message string and contains a '%', that's why we use fail_unless here */
  fail_unless (g_str_equal (l, "c:\\data\\gstreamer\\khuda.wav"),
      "wrong location '%s' returned for URI '%s'", l, uri);
  g_free (l);
  g_free (uri);

  /* make sure the other variant with two slashes before the C: (which was
   * needed before because of a bug in _get_location()) still works */
  uri = g_strdup ("file://c:/my%20music/foo.ogg");
  l = gst_uri_get_location (uri);
  fail_unless (l != NULL);
  /* fail_unless_equals_string will screw up here in the failure case
   * because the string constant will be appended to the printf format
   * message string and contains a '%', that's why we use fail_unless here */
  fail_unless (g_str_equal (l, "c:/my music/foo.ogg"),
      "wrong location '%s' returned for URI '%s'", l, uri);
  g_free (l);
  g_free (uri);
  
  std_log(LOG_FILENAME_LINE, "Test Successful");
  create_xml(0);
}

#endif

void (*fn[2]) (void) = {
        test_protocol_case,
        test_uri_get_location
};

char *args[] = {
        "test_protocol_case",
        "test_uri_get_location"
};

GST_CHECK_MAIN(gst_uri);

//int main()
//    {
//    gst_check_init(NULL,NULL);
//    test_protocol_case();
//    test_uri_get_location();
//#ifdef G_OS_WIN32
//    test_win32_uri();
//#endif    
//    }