File size: 11,040 Bytes
5bbfb59 | 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | /*
* Copyright (C) 2014-2021 Arpit Khurana <arpitkh96@gmail.com>, Vishal Nehra <vishalmeham2@gmail.com>,
* Emmanuel Messulam<emmanuelbendavid@gmail.com>, Raymond Lai <airwave209gt at gmail.com> and Contributors.
*
* This file is part of Amaze File Manager.
*
* Amaze File Manager is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.amaze.filemanager.asynchronous.services
import android.content.Context
import android.net.ConnectivityManager
import android.net.NetworkInfo
import android.net.Uri
import android.net.wifi.WifiInfo
import android.net.wifi.WifiManager
import android.os.Build.VERSION_CODES.LOLLIPOP
import android.os.Environment
import androidx.preference.PreferenceManager
import androidx.test.core.app.ApplicationProvider
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.amaze.filemanager.asynchronous.services.ftp.FtpService
import com.amaze.filemanager.filesystem.ftpserver.AndroidFileSystemFactory
import com.amaze.filemanager.shadows.ShadowMultiDex
import org.apache.commons.net.ftp.FTPClient
import org.apache.ftpserver.ConnectionConfigFactory
import org.apache.ftpserver.FtpServer
import org.apache.ftpserver.FtpServerFactory
import org.apache.ftpserver.listener.ListenerFactory
import org.apache.ftpserver.usermanager.impl.BaseUser
import org.junit.After
import org.junit.Assert.assertEquals
import org.junit.Assert.assertFalse
import org.junit.Assert.assertNotNull
import org.junit.Assert.assertNull
import org.junit.Assert.assertTrue
import org.junit.Before
import org.junit.Ignore
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.Shadows.shadowOf
import org.robolectric.annotation.Config
import org.robolectric.annotation.LooperMode
import org.robolectric.shadows.ShadowNetworkInfo
import org.robolectric.util.ReflectionHelpers
import java.io.ByteArrayInputStream
import java.io.File
import java.io.FileInputStream
import java.io.FileOutputStream
import java.net.InetAddress
import kotlin.random.Random
@Ignore("Pending fix for testing against newer Androids")
@RunWith(AndroidJUnit4::class)
@Config(sdk = [LOLLIPOP], shadows = [ShadowMultiDex::class])
@LooperMode(LooperMode.Mode.PAUSED)
@Suppress("StringLiteralDuplication")
class FtpServiceAndroidFileSystemIntegrationTest {
private val FTP_PORT = 62222
private var server: FtpServer? = null
private val randomContent = Random.nextBytes(16)
private var ftpClient: FTPClient? = null
companion object {
val directories =
arrayOf(
Environment.DIRECTORY_MUSIC,
Environment.DIRECTORY_PODCASTS,
Environment.DIRECTORY_RINGTONES,
Environment.DIRECTORY_ALARMS,
Environment.DIRECTORY_NOTIFICATIONS,
Environment.DIRECTORY_PICTURES,
Environment.DIRECTORY_MOVIES,
Environment.DIRECTORY_DOWNLOADS,
Environment.DIRECTORY_DCIM,
Environment.DIRECTORY_DOCUMENTS,
"1/2/3/4/5/6/7",
"lost+found",
)
}
/**
* Test setup
*/
@Before
fun setUp() {
Environment.getExternalStorageDirectory().run {
directories.forEach { dir ->
File(this, dir).mkdirs()
}
}
setupNetwork()
PreferenceManager.getDefaultSharedPreferences(ApplicationProvider.getApplicationContext())
.run {
edit().putString(
FtpService.KEY_PREFERENCE_PATH,
Environment.getExternalStorageDirectory().absolutePath,
)
.apply()
}
File(Environment.getExternalStorageDirectory(), "test.bin").let { file ->
file.writeBytes(randomContent)
shadowOf(ApplicationProvider.getApplicationContext<Context>().contentResolver)
.registerInputStream(Uri.fromFile(file), FileInputStream(file))
}
FtpServerFactory().run {
val connectionConfigFactory = ConnectionConfigFactory()
val user = BaseUser()
user.name = "anonymous"
user.homeDirectory = Environment.getExternalStorageDirectory().absolutePath
connectionConfigFactory.isAnonymousLoginEnabled = true
connectionConfig = connectionConfigFactory.createConnectionConfig()
userManager.save(user)
fileSystem =
AndroidFileSystemFactory(
ApplicationProvider.getApplicationContext(),
)
addListener(
"default",
ListenerFactory().also {
it.port = FTP_PORT
}.createListener(),
)
server =
createServer().apply {
start()
}
}
ftpClient =
FTPClient().also {
it.connect("127.0.0.1", FTP_PORT)
it.login("anonymous", "no@e.mail")
it.enterLocalPassiveMode()
}
}
private fun setupNetwork() {
val cm =
shadowOf(
ApplicationProvider.getApplicationContext<Context>()
.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager,
)
val wifiManager =
shadowOf(
ApplicationProvider.getApplicationContext<Context>()
.getSystemService(Context.WIFI_SERVICE) as WifiManager,
)
cm.setActiveNetworkInfo(
ShadowNetworkInfo.newInstance(
NetworkInfo.DetailedState.CONNECTED,
ConnectivityManager.TYPE_WIFI,
-1,
true,
NetworkInfo.State.CONNECTED,
),
)
ReflectionHelpers.callInstanceMethod<Any>(
wifiManager,
"setWifiEnabled",
ReflectionHelpers.ClassParameter.from(Boolean::class.java, true),
)
ReflectionHelpers.callInstanceMethod<WifiInfo>(
wifiManager,
"getConnectionInfo",
).run {
ReflectionHelpers.callInstanceMethod<Any>(
this,
"setInetAddress",
ReflectionHelpers.ClassParameter.from(
InetAddress::class.java,
InetAddress.getLoopbackAddress(),
),
)
}
}
/**
* Kill FTP server if there is one running
*/
@After
fun tearDown() {
ftpClient?.logout()
server?.stop()
}
/**
* Test on change directory functions
*/
@Test
fun testChdir() {
ftpClient!!.run {
assertEquals(directories.size + 1, listFiles().size)
assertTrue(changeWorkingDirectory("Download"))
assertEquals(0, listFiles().size)
assertTrue(changeWorkingDirectory(".."))
assertEquals(directories.size + 1, listFiles().size)
assertTrue(changeWorkingDirectory("/1/2/3/4/5/6/7"))
assertEquals(0, listFiles().size)
assertTrue(changeWorkingDirectory("../"))
assertTrue(printWorkingDirectory().startsWith("/1/2/3/4/5/6"))
assertTrue(changeToParentDirectory())
assertTrue(printWorkingDirectory().startsWith("/1/2/3/4/5"))
assertTrue(changeWorkingDirectory("../../.."))
assertTrue(printWorkingDirectory().startsWith("/1/2"))
}
}
/**
* Test remove directory function
*/
@Test
fun testRmDir() {
ftpClient!!.run {
assertTrue(changeWorkingDirectory("/"))
assertTrue(makeDirectory("foobar"))
assertEquals(directories.size + 2, listFiles().size)
assertTrue(removeDirectory("foobar"))
assertEquals(directories.size + 1, listFiles().size)
assertFalse(changeWorkingDirectory("foobar"))
assertTrue(listFiles("/foobar").isNullOrEmpty())
}
}
/**
* Test download file
*/
@Test
fun testDownloadFile() {
ftpClient!!.run {
assertFalse(deleteFile("/nonexist.file.txt"))
assertNull(retrieveFileStream("/not/existing/file"))
assertFalse(
retrieveFile(
"/barrier/nonexist.file.jpg",
FileOutputStream(File.createTempFile("notused", "output")),
),
)
assertTrue(changeWorkingDirectory("/"))
retrieveFileStream("test.bin").let {
assertNotNull(it)
it.close()
}
completePendingCommand()
assertTrue(printWorkingDirectory() == "/")
}
}
/**
* Test upload file
*/
@Test
fun testUploadFile() {
ftpClient!!.run {
storeFileStream("/test2.bin").let {
ByteArrayInputStream(Random.nextBytes(24)).copyTo(it)
it.flush()
it.close()
}
completePendingCommand()
assertTrue(rename("/test2.bin", "/test2.arc.bin"))
}
}
/**
* Test working with files and folders at subfolders
*/
@Test
fun testUploadFileToSubDir() {
ftpClient!!.run {
assertTrue(makeDirectory("/CROSS OVER"))
storeFileStream("/CROSS OVER/test3.bin").let {
ByteArrayInputStream(Random.nextBytes(24)).copyTo(it)
it.flush()
it.close()
}
completePendingCommand()
assertTrue(changeWorkingDirectory("/CROSS OVER"))
listFiles().let {
assertEquals(1, it.size)
assertEquals("test3.bin", it[0].name)
}
assertTrue(makeDirectory("/CROSS OVER/multiple"))
assertTrue(makeDirectory("/CROSS OVER/multiple/levels down"))
assertTrue(changeWorkingDirectory("/CROSS OVER/multiple"))
assertTrue(changeWorkingDirectory("levels down"))
assertEquals("/CROSS OVER/multiple/levels down", printWorkingDirectory())
assertTrue(deleteFile("/CROSS OVER/test3.bin"))
assertTrue(changeWorkingDirectory("/CROSS OVER"))
listFiles().let {
assertEquals(1, it.size)
assertEquals("multiple", it[0].name)
}
}
}
}
|