[rygel] tests: Add unit test for SeekableResponse
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [rygel] tests: Add unit test for SeekableResponse
- Date: Fri, 14 May 2010 16:02:22 +0000 (UTC)
commit 3cc33fe10eb61e88209f6fdbb6e9d170d5ee0d5a
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Fri May 14 17:36:29 2010 +0300
tests: Add unit test for SeekableResponse
tests/Makefile.am | 7 +
tests/rygel-http-response_seekable-response.vala | 1 +
tests/rygel-seekable-response-test.vala | 286 ++++++++++++++++++++++
tests/rygel-state-machine_seekable-response.vala | 1 +
4 files changed, 295 insertions(+), 0 deletions(-)
---
diff --git a/tests/Makefile.am b/tests/Makefile.am
index e014b1e..77092a9 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -28,6 +28,7 @@ AM_VALAFLAGS = --disable-warnings --thread \
check_PROGRAMS = rygel-http-item-uri-test \
rygel-http-response-test \
rygel-live-response-test \
+ rygel-seekable-response-test \
rygel-http-byte-seek-test \
rygel-http-time-seek-test
@@ -47,6 +48,12 @@ rygel_live_response_test_SOURCES = rygel-live-response-test.vala \
rygel-http-seek_live-response.vala \
rygel-gst-utils.vala
+rygel_seekable_response_test_SOURCES = \
+ rygel-seekable-response-test.vala \
+ rygel-seekable-response.vala \
+ rygel-http-response_seekable-response.vala \
+ rygel-state-machine_seekable-response.vala
+
rygel_http_byte_seek_test_SOURCES = rygel-http-byte-seek-test.vala \
rygel-http-byte-seek.vala \
rygel-http-seek.vala
diff --git a/tests/rygel-http-response_seekable-response.vala b/tests/rygel-http-response_seekable-response.vala
new file mode 120000
index 0000000..e23cfdf
--- /dev/null
+++ b/tests/rygel-http-response_seekable-response.vala
@@ -0,0 +1 @@
+../src/rygel/rygel-http-response.vala
\ No newline at end of file
diff --git a/tests/rygel-seekable-response-test.vala b/tests/rygel-seekable-response-test.vala
new file mode 100644
index 0000000..0f38311
--- /dev/null
+++ b/tests/rygel-seekable-response-test.vala
@@ -0,0 +1,286 @@
+/*
+ * Copyright (C) 2010 Nokia Corporation.
+ *
+ * Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
+ * <zeeshan ali nokia com>
+ *
+ * This file is part of Rygel.
+ *
+ * Rygel is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Rygel 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 Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+using Soup;
+using Gst;
+
+public errordomain Rygel.TestError {
+ SKIP = 77,
+ TIMEOUT
+}
+
+public class Rygel.HTTPSeek : GLib.Object {
+ public int64 start { get; private set; }
+ public int64 stop { get; private set; }
+ public int64 length { get; private set; }
+
+ public HTTPSeek (int64 start, int64 stop) {
+ this.start = start;
+ this.stop = stop;
+
+ this.length = stop - start + 1;
+ }
+}
+
+public class Rygel.SeekableResponseTest : GLib.Object {
+ private static const long MAX_BYTES = 1024;
+ private static string URI = "file:///tmp/rygel-dummy-test-file";
+
+ private HTTPServer server;
+ private HTTPClient client;
+ private File dummy_file;
+
+ private bool server_done;
+ private bool client_done;
+
+ private MainLoop main_loop;
+
+ private Cancellable cancellable;
+ private Error error;
+
+ public static int main (string[] args) {
+ Gst.init (ref args);
+
+ try {
+ var test = new SeekableResponseTest.complete ();
+ test.run ();
+
+ test = new SeekableResponseTest.abort ();
+ test.run ();
+ } catch (TestError.SKIP error) {
+ return error.code;
+ } catch (Error error) {
+ critical ("%s", error.message);
+
+ return -1;
+ }
+
+ return 0;
+ }
+
+ private SeekableResponseTest (Cancellable? cancellable = null)
+ throws Error {
+ this.cancellable = cancellable;
+
+ this.server = new HTTPServer ();
+ this.client = new HTTPClient (this.server.context,
+ this.server.uri,
+ MAX_BYTES,
+ cancellable != null);
+ this.main_loop = new MainLoop (null, false);
+ }
+
+ private SeekableResponseTest.complete () throws Error {
+ this ();
+ }
+
+ private SeekableResponseTest.abort () throws Error {
+ this (new Cancellable ());
+ }
+
+ private void run () throws Error {
+ this.create_dummy_file ();
+
+ Timeout.add_seconds (3, this.on_timeout);
+ this.server.message_received.connect (this.on_message_received);
+ this.server.message_aborted.connect (this.on_message_aborted);
+ if (this.cancellable == null) {
+ this.client.completed.connect (this.on_client_completed);
+ } else {
+ this.client_done = true;
+ }
+
+ this.client.run.begin ();
+
+ this.main_loop.run ();
+
+ if (this.error != null) {
+ throw this.error;
+ }
+
+ this.dummy_file.delete (null);
+ }
+
+ private void create_dummy_file () throws Error {
+ this.dummy_file = File.new_for_uri (URI);
+ var stream = this.dummy_file.replace (null, false, 0, null);
+
+ // Put randon stuff into it
+ stream.write (new char[1024], 1024, null);
+ }
+
+ private void on_client_completed (StateMachine client) {
+ if (this.server_done) {
+ this.main_loop.quit ();
+ }
+
+ this.client_done = true;
+ }
+
+ private void on_response_completed (StateMachine response) {
+ if (this.client_done) {
+ this.main_loop.quit ();
+ }
+
+ this.server_done = true;
+ }
+
+ private void on_message_received (HTTPServer server,
+ Soup.Message msg) {
+ try {
+ var seek = new HTTPSeek (0, 1025);
+ var response = new SeekableResponse (
+ server.context.server,
+ msg,
+ this.dummy_file.get_uri (),
+ seek,
+ 1024,
+ this.cancellable);
+
+ response.run.begin ();
+
+ response.completed.connect (this.on_response_completed);
+ } catch (Error error) {
+ this.error = error;
+ this.main_loop.quit ();
+
+ return;
+ }
+ }
+
+ private void on_message_aborted (HTTPServer server,
+ Soup.Message msg) {
+ this.cancellable.cancel ();
+ }
+
+ private bool on_timeout () {
+ this.error = new TestError.TIMEOUT ("Timeout");
+ this.main_loop.quit ();
+
+ return false;
+ }
+}
+
+private class Rygel.HTTPServer : GLib.Object {
+ private const string SERVER_PATH = "/RygelHTTPServer/Rygel/Test";
+
+ public GUPnP.Context context;
+
+ public string uri {
+ owned get { return "http://" +
+ this.context.host_ip + ":" +
+ this.context.port.to_string () +
+ SERVER_PATH;
+ }
+ }
+
+ public signal void message_received (Soup.Message message);
+ public signal void message_aborted (Soup.Message message);
+
+ public HTTPServer () throws TestError {
+ try {
+ this.context = new GUPnP.Context (null, "lo", 0);
+ } catch (Error error) {
+ throw new TestError.SKIP ("Network context not available");
+ }
+
+ assert (this.context != null);
+ assert (this.context.host_ip != null);
+ assert (this.context.port > 0);
+
+ this.context.server.add_handler (SERVER_PATH, this.server_cb);
+ this.context.server.request_aborted.connect (this.on_request_aborted);
+ }
+
+ private void server_cb (Server server,
+ Soup.Message msg,
+ string path,
+ HashTable? query,
+ ClientContext client) {
+ this.context.server.pause_message (msg);
+ this.message_received (msg);
+ }
+
+ private void on_request_aborted (Soup.Server server,
+ Soup.Message message,
+ Soup.ClientContext client) {
+ this.message_aborted (message);
+ }
+}
+
+private class Rygel.HTTPClient : GLib.Object, StateMachine {
+ public GUPnP.Context context;
+ public Soup.Message msg;
+ public size_t total_bytes;
+
+ public Cancellable cancellable { get; set; }
+
+ public HTTPClient (GUPnP.Context context,
+ string uri,
+ size_t total_bytes,
+ bool active) {
+ this.context = context;
+ this.total_bytes = total_bytes;
+
+ this.msg = new Soup.Message ("HTTP", uri);
+ assert (this.msg != null);
+ this.msg.response_body.set_accumulate (false);
+
+ if (active) {
+ this.cancellable = new Cancellable ();
+ this.cancellable.cancelled += this.on_cancelled;
+ }
+ }
+
+ public async void run () {
+ SourceFunc run_continue = run.callback;
+ size_t bytes_received = 0;
+
+ this.msg.got_chunk.connect ((msg, chunk) => {
+ bytes_received += chunk.length;
+
+ if (bytes_received >= this.total_bytes &&
+ this.cancellable != null) {
+ bytes_received = bytes_received.clamp (0, this.total_bytes);
+
+ this.cancellable.cancel ();
+ }
+ });
+
+ this.context.session.queue_message (this.msg, (session, msg) => {
+ assert (bytes_received == this.total_bytes);
+
+ run_continue ();
+ });
+
+ yield;
+
+ this.completed ();
+ }
+
+ private void on_cancelled (Cancellable cancellable) {
+ this.context.session.cancel_message (this.msg,
+ KnownStatusCode.CANCELLED);
+ this.completed ();
+ }
+}
diff --git a/tests/rygel-state-machine_seekable-response.vala b/tests/rygel-state-machine_seekable-response.vala
new file mode 120000
index 0000000..5063d68
--- /dev/null
+++ b/tests/rygel-state-machine_seekable-response.vala
@@ -0,0 +1 @@
+../src/rygel/rygel-state-machine.vala
\ No newline at end of file
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]