summaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/icewind/smb/tests/Parser.php
blob: 0dd06d6af3311c5727fcb67aa4a7fac02963af17 (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
<?php
/**
 * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Licensed under the MIT license:
 * http://opensource.org/licenses/MIT
 */

namespace Icewind\SMB\Test;


use Icewind\SMB\FileInfo;

class Parser extends \PHPUnit_Framework_TestCase {
	public function modeProvider() {
		return array(
			array('D', FileInfo::MODE_DIRECTORY),
			array('A', FileInfo::MODE_ARCHIVE),
			array('S', FileInfo::MODE_SYSTEM),
			array('H', FileInfo::MODE_HIDDEN),
			array('R', FileInfo::MODE_READONLY),
			array('N', FileInfo::MODE_NORMAL),
			array('RA', FileInfo::MODE_READONLY | FileInfo::MODE_ARCHIVE),
			array('RAH', FileInfo::MODE_READONLY | FileInfo::MODE_ARCHIVE | FileInfo::MODE_HIDDEN)
		);
	}

	/**
	 * @dataProvider modeProvider
	 */
	public function testParseMode($string, $mode) {
		$parser = new \Icewind\SMB\Parser('UTC');
		$this->assertEquals($mode, $parser->parseMode($string), 'Failed parsing ' . $string);
	}

	public function statProvider() {
		return array(
			array(
				array(
					'altname: test.txt',
					'create_time:    Sat Oct 12 07:05:58 PM 2013 CEST',
					'access_time:    Tue Oct 15 02:58:48 PM 2013 CEST',
					'write_time:     Sat Oct 12 07:05:58 PM 2013 CEST',
					'change_time:    Sat Oct 12 07:05:58 PM 2013 CEST',
					'attributes:  (80)',
					'stream: [::$DATA], 29634 bytes'
				),
				array(
					'mtime' => strtotime('12 Oct 2013 19:05:58 CEST'),
					'mode' => FileInfo::MODE_NORMAL,
					'size' => 29634
				))
		);
	}

	/**
	 * @dataProvider statProvider
	 */
	public function testStat($output, $stat) {
		$parser = new \Icewind\SMB\Parser('UTC');
		$this->assertEquals($stat, $parser->parseStat($output));
	}

	public function dirProvider() {
		return array(
			array(
				array(
					'  .                                   D        0  Tue Aug 26 19:11:56 2014',
					'  ..                                 DR        0  Sun Oct 28 15:24:02 2012',
					'  c.pdf                               N    29634  Sat Oct 12 19:05:58 2013',
					'',
					'                62536 blocks of size 8388608. 57113 blocks available'
				),
				array(
					new FileInfo('/c.pdf', 'c.pdf', 29634, strtotime('12 Oct 2013 19:05:58 CEST'), FileInfo::MODE_NORMAL)
				)
			)
		);
	}

	/**
	 * @dataProvider dirProvider
	 */
	public function testDir($output, $dir) {
		$parser = new \Icewind\SMB\Parser('CEST');
		$this->assertEquals($dir, $parser->parseDir($output, ''));
	}
}