summaryrefslogtreecommitdiffstats
path: root/tests/lib/share/helper.php
blob: 0dfb85856c2a8606496ed51d57629e887d822dd6 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
/**
* ownCloud
*
* @author Bjoern Schiessle
* @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
*/

class Test_Share_Helper extends \Test\TestCase {

	public function expireDateProvider() {
		return array(
			// no default expire date, we take the users expire date
			array(array('defaultExpireDateSet' => false), 2000000000, 2000010000, 2000010000),
			// no default expire date and no user defined expire date, return false
			array(array('defaultExpireDateSet' => false), 2000000000, null, false),
			// unenforced expire data and no user defined expire date, return false (because the default is not enforced)
			array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => false), 2000000000, null, false),
			// enforced expire date and no user defined expire date, take default expire date
			array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => true), 2000000000, null, 2000086400),
			// unenforced expire date and user defined date > default expire date, take users expire date
			array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => false), 2000000000, 2000100000, 2000100000),
			// unenforced expire date and user expire date < default expire date, take users expire date
			array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => false), 2000000000, 2000010000, 2000010000),
			// enforced expire date and user expire date < default expire date, take users expire date
			array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => true), 2000000000, 2000010000, 2000010000),
			// enforced expire date and users expire date > default expire date, take default expire date
			array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => true), 2000000000, 2000100000, 2000086400),
		);
	}

	/**
	 * @dataProvider expireDateProvider
	 */
	public function testCalculateExpireDate($defaultExpireSettings, $creationTime, $userExpireDate, $expected) {
		$result = \OC\Share\Helper::calculateExpireDate($defaultExpireSettings, $creationTime, $userExpireDate);
		$this->assertSame($expected, $result);
	}

	public function fixRemoteURLInShareWithData() {
		$userPrefix = ['test@', 'na/me@'];
		$protocols = ['', 'http://', 'https://'];
		$remotes = [
			'localhost',
			'test:foobar@localhost',
			'local.host',
			'dev.local.host',
			'dev.local.host/path',
			'127.0.0.1',
			'::1',
			'::192.0.2.128',
		];

		$testCases = [
			['test', 'test'],
			['na/me', 'na/me'],
			['na/me/', 'na/me'],
			['na/index.php', 'na/index.php'],
			['http://localhost', 'http://localhost'],
			['http://localhost/', 'http://localhost'],
			['http://localhost/index.php', 'http://localhost/index.php'],
			['http://localhost/index.php/s/token', 'http://localhost/index.php/s/token'],
			['http://test:foobar@localhost', 'http://test:foobar@localhost'],
			['http://test:foobar@localhost/', 'http://test:foobar@localhost'],
			['http://test:foobar@localhost/index.php', 'http://test:foobar@localhost'],
			['http://test:foobar@localhost/index.php/s/token', 'http://test:foobar@localhost'],
		];

		foreach ($userPrefix as $user) {
			foreach ($remotes as $remote) {
				foreach ($protocols as $protocol) {
					$baseUrl = $user . $protocol . $remote;

					$testCases[] = [$baseUrl, $baseUrl];
					$testCases[] = [$baseUrl . '/', $baseUrl];
					$testCases[] = [$baseUrl . '/index.php', $baseUrl];
					$testCases[] = [$baseUrl . '/index.php/s/token', $baseUrl];
				}
			}
		}
		return $testCases;
	}

	/**
	 * @dataProvider fixRemoteURLInShareWithData
	 */
	public function testFixRemoteURLInShareWith($remote, $expected) {
		$this->assertSame($expected, \OC\Share\Helper::fixRemoteURLInShareWith($remote));
	}

	/**
	 * @dataProvider dataTestSplitUserRemoteSuccess
	 *
	 * @param string $id
	 * @param string $expectedUser
	 * @param string $expectedRemote
	 */
	public function testSplitUserRemoteSuccess($id, $expectedUser, $expectedRemote) {
		list($user, $remote) = \OC\Share\Helper::splitUserRemote($id);
		$this->assertSame($expectedUser, $user);
		$this->assertSame($expectedRemote, $remote);
	}

	public function dataTestSplitUserRemoteSuccess() {
		return array(
			array('user@server', 'user', 'server'),
			array('user@name@server', 'user@name', 'server')
		);
	}

	/**
	 * @dataProvider dataTestSplitUserRemoteError
	 *
	 * @param string $id
	 * @expectedException \OC\Share\Exceptions\InvalidFederatedCloudIdException
	 */
	public function testSplitUserRemoteError($id) {
		\OC\Share\Helper::splitUserRemote($id);
	}

	public function dataTestSplitUserRemoteError() {
		return array(
			array('user@'),
			array('@server'),
			array('user'),
			array(''),
		);
	}
}