summaryrefslogtreecommitdiff
path: root/valadate/testsuite.vala
blob: 6b0239cb47908c40af9d0617a6e1ba2b48c08344 (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
101
102
103
104
105
106
107
108
109
110
111
/*
 * Valadate - Unit testing library for GObject-based libraries.
 * Copyright (C) 2016  Chris Daley <chebizarro@gmail.com>
 *
 * This library 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.1 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
 * Lesser General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 *
 * Authors:
 * 	Chris Daley <chebizarro@gmail.com>
 */

public class Valadate.TestSuite : Object, Test {

	private List<Test> _tests = new List<Test>();
	/**
	 * the name of the TestSuite
	 */
	public string name { get; set; }
	/**
	 * the label of the TestSuite
	 */
	public string label { get; set; }
	/**
	 * Iterator (not the actual number of Tests that will be run)
	 */
	public int size {
		get {
			return (int)_tests.length();
		}
	}
	/**
	 * Returns the number of {@link Valadate.Test}s that will be run by 
	 * this TestSuite
	 */
	public int count {
		get {
			int testcount = 0;
			_tests.foreach((t) => {
				testcount += t.count;
			});
			return testcount;
		}
	}
	public Test? parent {get;set;}
	/**
	 * Returns a {@link GLib.List} of {@link Valadate.Test}s that will be
	 * run by this TestSuite
	 */
	public List<Test> tests {
		get {
			return _tests;
		}
	}
	public TestStatus status {get;set;default=TestStatus.NOT_RUN;}
	public double time {get;set;}
	public int skipped {get;set;}
	public int errors {get;set;}
	public int failures {get;set;}
	/**
	 * The public constructor takes an optional string parameter for the
	 * TestSuite's name
	 */
	public TestSuite(string? name = null) {
		this.name = name ?? this.get_type().name();
		this.label = name;
	}
	/**
	 * Adds a test to the suite.
	 */
	public void add_test(Test test) {
		test.parent = this;
		_tests.append(test);
	}
	/**
	 * Runs all of the tests in the Suite
	 */
	public void run (TestResult result) {

		if(status != TestStatus.NOT_RUN)
			return;

		_tests.foreach((t) => {
			t.run(result);
		});
	}

	public new Test get(int index) {
		return _tests.nth_data((uint)index);
	}

	public new void set(int index, Test test) {
		test.parent = this;
		_tests.insert_before(_tests.nth(index), test);
		var t = _tests.nth_data((uint)index++);
		_tests.remove(t);
	}

	public virtual void set_up() {}
	public virtual void tear_down() {}
}