summaryrefslogtreecommitdiff
path: root/tests/CapsTest.cs
blob: 3b363abb52fd88aaa0735ef5e6af192263669274 (plain)
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
//
// CapsTest.cs: NUnit Test Suite for gstreamer-sharp
//
// Authors:
//   Michael Dominic K. (michaldominik@gmail.com)
//   
// (C) 2006 Novell, Inc.
//

using System;
using NUnit.Framework;
using Gst;

[TestFixture]
public class CapsTest
{
	[TestFixtureSetUp]
	public void Init()
	{
		Application.Init();
	}

	[Test]
	public void TestPlainCreation()
	{
		Caps caps = new Caps();
		Assert.IsNotNull(caps);
		Assert.IsFalse(caps.Handle == IntPtr.Zero, "Ooops, null handle");
	}

	[Test]
	public void TestFromString()
	{
		Caps caps = Caps.FromString("video/x-raw-yuv, " + 
				"format=(fourcc)I420, " +
				"width=(int)384, " + 
				"height=(int)288, " + 
				"framerate=(fraction)25/1");
		Assert.IsNotNull(caps);

		Assert.IsFalse(caps.Handle == IntPtr.Zero, "Ooops, null handle");
		Assert.IsTrue(caps.IsFixed, "Caps should be FIXED!");
		Assert.IsFalse(caps.IsEmpty, "Caps shouldn't be EMPTY!");
		Assert.IsFalse(caps.IsAny, "Caps shouldn't be ANY!");
	}

	[Test]
	public void TestIntersecting()
	{
		Caps caps1 = Caps.FromString("video/x-raw-yuv, " + 
				"format=(fourcc)I420, " + 
				"width=(int)[ 1,1000 ], " + 
				"height=(int)[ 1, 1000 ], " + 
				"framerate=(fraction)[ 0/1, 100/1 ]");
		Caps caps2 = Caps.FromString("video/x-raw-yuv, " + 
				"format=(fourcc)I420, " + 
				"width=(int)640, " + 
				"height=(int)480");
		Assert.IsNotNull(caps1);
		Assert.IsNotNull(caps2);

		Assert.IsFalse(caps1.Handle == IntPtr.Zero, "Ooops, null handle in caps1");
		Assert.IsFalse(caps1.Handle == IntPtr.Zero, "Ooops, null handle in caps2");

		Caps caps3 = caps1.Intersect(caps2);

		Assert.IsFalse(caps3.IsFixed, "How come caps are FIXED?!");
		Assert.IsFalse(caps3.IsEmpty, "How come caps are EMPTY?!");

		Assert.AreEqual(caps2.ToString() + ", framerate=(fraction)[ 0/1, 100/1 ]", caps3.ToString());
	}

	[Test]
	public void TestUnion()
	{
		Caps caps1 = Caps.FromString("video/x-raw-yuv, " + 
				"format=(fourcc)I420, " + 
				"width=(int)640"); 
		Caps caps2 = Caps.FromString("video/x-raw-yuv, " + 
				"format=(fourcc)I420, " + 
				"height=(int)480");
		Assert.IsNotNull(caps1);
		Assert.IsNotNull(caps2);

		Assert.IsFalse(caps1.Handle == IntPtr.Zero, "Ooops, null handle in caps1");
		Assert.IsFalse(caps1.Handle == IntPtr.Zero, "Ooops, null handle in caps2");

		Caps caps3 = caps1.Union(caps2);

		Assert.IsFalse(caps3.IsEmpty, "How come caps are EMPTY?!");

		Assert.AreEqual("video/x-raw-yuv, " + 
				"format=(fourcc)I420, " + 
				"width=(int)640; " + 
				"video/x-raw-yuv, " + 
				"format=(fourcc)I420, " + 
				"height=(int)480", 
				caps3.ToString());
	}
}