This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest_template.properties
84 lines (58 loc) · 3.98 KB
/
test_template.properties
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
# This file is part of muCommander, http://www.mucommander.com
# Copyright (C) 2002-2010 Maxence Bernard
#
# muCommander 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 3 of the License, or
# (at your option) any later version.
#
# muCommander 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, see <http://www.gnu.org/licenses/>.
# Defines various properties used to configure unit tests.
# Copy this file to ./test.properties and edit it before running tests.
# - FTP ----------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# True to enable FTP tests, false to disable them.
com.mucommander.commons.file.impl.ftp.FTPFileTest#enabled=false;
# URI of the FTP folder where temporary test files are created.
# This URI must contain valid credentials.
test_properties.ftp_test.temp_folder=
# - HDFS ---------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# True to enable HDFS tests, false to disable them.
com.mucommander.commons.file.impl.hadoop.HDFSFileTest#enabled=false;
# URI of the HDFS folder where temporary test files are created.
test_properties.hdfs_test.temp_folder=
# - Local --------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# True to enable local tests, false to disable them.
com.mucommander.commons.file.impl.local.LocalFileTest#enabled=true;
# - S3 -----------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# True to enable S3 tests, false to disable them.
com.mucommander.commons.file.impl.s3.S3FileTest#enabled=false;
# URI of the S3 folder where temporary test files are created.
test_properties.s3_test.temp_folder=
# - SFTP ---------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# True to enable SFTP tests, false to disable them.
com.mucommander.commons.file.impl.sftp.SFTPFileTest#enabled=false;
# URI of the S3 folder where temporary test files are created.
# This URI must contain valid credentials.
test_properties.sftp_test.temp_folder=
# - SMB ----------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# True to enable SMB tests, false to disable them.
com.mucommander.commons.file.impl.smb.SMBFileTest#enabled=false;
# URI of the S3 folder where temporary test files are created.
# This URI must contain valid credentials.
test_properties.smb_test.temp_folder=
# - ZIP ----------------------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------------------------
# True to enable ZIP tests, false to disable them.
com.mucommander.commons.file.impl.zip.ZipArchiveFileTest#enabled=false;