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 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
|
#!/usr/bin/python
import unittest
import os
import sys
import ftplib
import StringIO
from datetime import datetime
from time import sleep
from swiftclient import client
from ftpcloudfs.constants import default_address, default_port
from ftpcloudfs.fs import ListDirCache
#import logging
#logging.getLogger().setLevel(logging.DEBUG)
#logging.basicConfig(level=logging.DEBUG)
class FtpObjectStorageFSTest(unittest.TestCase):
''' FTP Cloud FS main test '''
def setUp(self):
if not all(['OS_API_KEY' in os.environ,
'OS_API_USER' in os.environ,
'OS_AUTH_URL' in os.environ,
]):
print "env OS_API_USER/OS_API_KEY/OS_AUTH_URL not found."
sys.exit(1)
self.username = os.environ['OS_API_USER']
self.api_key = os.environ['OS_API_KEY']
self.auth_url = os.environ.get('OS_AUTH_URL')
self.cnx = ftplib.FTP()
self.cnx.host = default_address
self.cnx.port = default_port
self.cnx.connect()
self.cnx.login(self.username, self.api_key)
self.container = "ftpcloudfs_testing"
self.cnx.mkd("/%s" % self.container)
self.cnx.cwd("/%s" % self.container)
self.conn = client.Connection(user=self.username, key=self.api_key, authurl=self.auth_url)
def create_file(self, path, contents):
'''Create path with contents'''
self.cnx.storbinary("STOR %s" % path, StringIO.StringIO(contents))
def test_mkdir_chdir_rmdir(self):
''' mkdir/chdir/rmdir directory '''
directory = "/foobarrandom"
self.assertEqual(self.cnx.mkd(directory), directory)
self.assertEqual(self.cnx.cwd(directory),
'250 "%s" is the current directory.' % (directory))
self.assertEqual(self.cnx.rmd(directory), "250 Directory removed.")
def test_mkdir_chdir_mkdir_rmdir_subdir(self):
''' mkdir/chdir/rmdir sub directory '''
directory = "/foobarrandom"
self.assertEqual(self.cnx.mkd(directory), directory)
self.assertEqual(self.cnx.cwd(directory),
'250 "%s" is the current directory.' % (directory))
subdirectory = "potato"
subdirpath = directory + "/" + subdirectory
self.assertEqual(self.cnx.mkd(subdirectory), subdirpath)
# Can't delete a directory with stuff in
self.assertRaises(ftplib.error_perm, self.cnx.rmd, directory)
self.assertEqual(self.cnx.cwd(subdirectory),
'250 "%s" is the current directory.' % (subdirpath))
self.assertEqual(self.cnx.cwd(".."),
'250 "%s" is the current directory.' % (directory))
self.assertEqual(self.cnx.rmd(subdirectory), "250 Directory removed.")
self.assertEqual(self.cnx.cwd(".."),
'250 "/" is the current directory.')
self.assertEqual(self.cnx.rmd(directory), "250 Directory removed.")
def test_write_open_delete(self):
''' write/open/delete file '''
content_string = "Hello Moto"
self.create_file("testfile.txt", content_string)
self.assertEquals(self.cnx.size("testfile.txt"), len(content_string))
store = StringIO.StringIO()
self.cnx.retrbinary("RETR testfile.txt", store.write)
self.assertEqual(store.getvalue(), content_string)
self.assertEqual(self.cnx.delete("testfile.txt"), "250 File removed.")
store.close()
def test_write_open_delete_subdir(self):
''' write/open/delete file in a subdirectory'''
self.cnx.mkd("potato")
self.cnx.cwd("potato")
content_string = "Hello Moto"
self.create_file("testfile.txt", content_string)
self.assertEquals(self.cnx.size("testfile.txt"), len(content_string))
store = StringIO.StringIO()
self.cnx.retrbinary("RETR /%s/potato/testfile.txt" % self.container, store.write)
self.assertEqual(store.getvalue(), content_string)
self.assertEqual(self.cnx.delete("testfile.txt"), "250 File removed.")
self.cnx.cwd("..")
self.cnx.rmd("potato")
store.close()
def test_write_to_slash(self):
''' write to slash should not be permitted '''
self.cnx.cwd("/")
content_string = "Hello Moto"
self.assertRaises(ftplib.error_perm, self.create_file, "testfile.txt", content_string)
def test_chdir_to_a_file(self):
''' chdir to a file '''
self.create_file("testfile.txt", "Hello Moto")
self.assertRaises(ftplib.error_perm, self.cnx.cwd, "/%s/testfile.txt" % self.container)
self.cnx.delete("testfile.txt")
def test_chdir_to_slash(self):
''' chdir to slash '''
self.cnx.cwd("/")
def test_chdir_to_nonexistent_container(self):
''' chdir to non existent container'''
self.assertRaises(ftplib.error_perm, self.cnx.cwd, "/i_dont_exist")
def test_chdir_to_nonexistent_directory(self):
''' chdir to nonexistend directory'''
self.assertRaises(ftplib.error_perm, self.cnx.cwd, "i_dont_exist")
self.assertRaises(ftplib.error_perm, self.cnx.cwd, "/%s/i_dont_exist" % self.container)
def test_listdir_root(self):
''' list root directory '''
self.cnx.cwd("/")
ls = self.cnx.nlst()
self.assertTrue(self.container in ls)
self.assertTrue('potato' not in ls)
self.cnx.mkd("potato")
ls = self.cnx.nlst()
self.assertTrue(self.container in ls)
self.assertTrue('potato' in ls)
self.cnx.rmd("potato")
def test_listdir(self):
''' list directory '''
content_string = "Hello Moto"
self.create_file("testfile.txt", content_string)
self.assertEqual(self.cnx.nlst(), ["testfile.txt"])
lines = []
self.assertEquals(self.cnx.retrlines('LIST', callback=lines.append), '226 Transfer complete.')
self.assertEquals(len(lines), 1)
line = lines[0]
expected = "-rw-r--r-- 1 "+self.username+" "+self.username+" 10 "+ datetime.utcnow().strftime("%b %d %H:")
self.assertTrue(line.startswith(expected), "line %r != expected %r" % (line, expected))
self.assertTrue(line.endswith(" testfile.txt"))
self.cnx.delete("testfile.txt")
def test_listdir_subdir(self):
''' list a sub directory'''
content_string = "Hello Moto"
self.create_file("1.txt", content_string)
self.create_file("2.txt", content_string)
self.cnx.mkd("potato")
self.create_file("potato/3.txt", content_string)
self.create_file("potato/4.txt", content_string)
self.assertEqual(self.cnx.nlst(), ["1.txt", "2.txt", "potato"])
self.cnx.cwd("potato")
self.assertEqual(self.cnx.nlst(), ["3.txt", "4.txt"])
self.cnx.delete("3.txt")
self.cnx.delete("4.txt")
self.assertEqual(self.cnx.nlst(), [])
self.cnx.cwd("..")
self.cnx.delete("1.txt")
self.cnx.delete("2.txt")
self.assertEqual(self.cnx.nlst(), ["potato"])
lines = []
self.assertEquals(self.cnx.retrlines('LIST', callback=lines.append), '226 Transfer complete.')
self.assertEquals(len(lines), 1)
line = lines[0]
expected = "drwxr-xr-x 1 "+self.username+" "+self.username+" 0 "+ datetime.utcnow().strftime("%b %d %H:")
self.assertTrue(line.startswith(expected), "line %r != expected %r" % (line, expected))
self.assertTrue(line.endswith(" potato"))
self.cnx.rmd("potato")
self.assertEqual(self.cnx.nlst(), [])
def test_rename_file(self):
'''rename a file'''
content_string = "Hello Moto" * 100
self.create_file("testfile.txt", content_string)
self.assertEquals(self.cnx.size("testfile.txt"), len(content_string))
self.assertRaises(ftplib.error_perm, self.cnx.size, "testfile2.txt")
self.cnx.rename("testfile.txt", "testfile2.txt")
self.assertEquals(self.cnx.size("testfile2.txt"), len(content_string))
self.assertRaises(ftplib.error_perm, self.cnx.size, "testfile.txt")
self.cnx.delete("testfile2.txt")
def test_rename_file_into_subdir1(self):
'''rename a file into a subdirectory 1'''
content_string = "Hello Moto"
self.create_file("testfile.txt", content_string)
self.cnx.mkd("potato")
self.assertEquals(self.cnx.size("testfile.txt"), len(content_string))
self.assertRaises(ftplib.error_perm, self.cnx.size, "potato/testfile3.txt")
self.cnx.rename("testfile.txt", "potato/testfile3.txt")
self.assertEquals(self.cnx.size("potato/testfile3.txt"), len(content_string))
self.assertRaises(ftplib.error_perm, self.cnx.size, "testfile.txt")
self.cnx.delete("potato/testfile3.txt")
self.cnx.rmd("potato")
def test_rename_file_into_subdir2(self):
'''rename a file into a subdirectory without specifying dest leaf'''
content_string = "Hello Moto"
self.create_file("testfile.txt", content_string)
self.cnx.mkd("potato")
self.assertEquals(self.cnx.size("testfile.txt"), len(content_string))
self.assertRaises(ftplib.error_perm, self.cnx.size, "potato/testfile.txt")
self.cnx.rename("testfile.txt", "potato")
self.assertEquals(self.cnx.size("potato/testfile.txt"), len(content_string))
self.assertRaises(ftplib.error_perm, self.cnx.size, "testfile.txt")
self.cnx.delete("potato/testfile.txt")
self.cnx.rmd("potato")
def test_rename_file_into_root(self):
'''rename a file into a subdirectory without specifying dest leaf'''
content_string = "Hello Moto"
self.create_file("testfile.txt", content_string)
self.assertRaises(ftplib.error_perm, self.cnx.rename, "testfile.txt", "/testfile.txt")
self.cnx.delete("testfile.txt")
def test_rename_directory_into_file(self):
'''rename a directory into a file - shouldn't work'''
content_string = "Hello Moto"
self.create_file("testfile.txt", content_string)
self.assertRaises(ftplib.error_perm, self.cnx.rename, "/%s" % self.container, "testfile.txt")
self.cnx.delete("testfile.txt")
def test_rename_directory_into_directory(self):
'''rename a directory into a directory'''
self.cnx.mkd("potato")
self.assertEquals(self.cnx.nlst("potato"), [])
self.cnx.rename("potato", "potato2")
self.assertEquals(self.cnx.nlst("potato2"), [])
self.cnx.rmd("potato2")
def test_rename_directory_into_existing_directory(self):
'''rename a directory into an existing directory'''
self.cnx.mkd("potato")
self.cnx.mkd("potato2")
self.assertEquals(self.cnx.nlst("potato"), [])
self.assertEquals(self.cnx.nlst("potato2"), [])
self.cnx.rename("potato", "potato2")
self.assertEquals(self.cnx.nlst("potato2"), ["potato"])
self.assertEquals(self.cnx.nlst("potato2/potato"), [])
self.cnx.rmd("potato2/potato")
self.cnx.rmd("potato2")
def test_rename_directory_into_self(self):
'''rename a directory into itself'''
self.cnx.mkd("potato")
self.assertEquals(self.cnx.nlst("potato"), [])
self.cnx.rename("potato", "/%s" % self.container)
self.assertEquals(self.cnx.nlst("potato"), [])
self.cnx.rename("potato", "/%s/potato" % self.container)
self.assertEquals(self.cnx.nlst("potato"), [])
self.cnx.rename("potato", "potato")
self.assertEquals(self.cnx.nlst("potato"), [])
self.cnx.rename("/%s/potato" % self.container, ".")
self.assertEquals(self.cnx.nlst("potato"), [])
self.cnx.rmd("potato")
def test_rename_full_directory(self):
'''rename a directory into a directory'''
self.cnx.mkd("potato")
self.create_file("potato/something.txt", "p")
try:
self.assertEquals(self.cnx.nlst("potato"), ["something.txt"])
self.assertRaises(ftplib.error_perm, self.cnx.rename, "potato", "potato2")
finally:
self.cnx.delete("potato/something.txt")
self.cnx.rmd("potato")
def test_rename_container(self):
'''rename an empty container'''
self.cnx.mkd("/potato")
self.assertEquals(self.cnx.nlst("/potato"), [])
self.assertRaises(ftplib.error_perm, self.cnx.nlst, "/potato2")
self.cnx.rename("/potato", "/potato2")
self.assertRaises(ftplib.error_perm, self.cnx.nlst, "/potato")
self.assertEquals(self.cnx.nlst("/potato2"), [])
self.cnx.rmd("/potato2")
def test_rename_full_container(self):
'''rename a full container'''
self.cnx.mkd("/potato")
self.create_file("/potato/test.txt", "onion")
self.assertEquals(self.cnx.nlst("/potato"), ["test.txt"])
self.assertRaises(ftplib.error_perm, self.cnx.rename, "/potato", "/potato2")
self.cnx.delete("/potato/test.txt")
self.cnx.rmd("/potato")
def test_unicode_file(self):
'''Test unicode file creation'''
# File names use a utf-8 interface
file_name = u"Smiley\u263a.txt".encode("utf-8")
self.create_file(file_name, "Hello Moto")
self.assertEqual(self.cnx.nlst(), [file_name])
self.cnx.delete(file_name)
def test_unicode_directory(self):
'''Test unicode directory creation'''
# File names use a utf-8 interface
dir_name = u"Smiley\u263aDir".encode("utf-8")
self.cnx.mkd(dir_name)
self.assertEqual(self.cnx.nlst(), [dir_name])
self.cnx.rmd(dir_name)
def test_mkdir_container_unicode(self):
''' mkdir/chdir/rmdir directory '''
directory = u"/Smiley\u263aContainer".encode("utf-8")
self.assertEqual(self.cnx.mkd(directory), directory)
self.assertEqual(self.cnx.cwd(directory),
'250 "%s" is the current directory.' % (directory))
self.assertEqual(self.cnx.rmd(directory), "250 Directory removed.")
def test_fakedir(self):
'''Make some fake directories and test'''
objs = ["test1.txt", "potato/test2.txt", "potato/sausage/test3.txt",
"potato/sausage/test4.txt",]
for obj in objs:
self.conn.put_object(self.container, obj, content_type="text/plain", contents="Hello Moto")
self.assertEqual(self.cnx.nlst(), ["potato", "test1.txt"])
self.assertEqual(self.cnx.nlst("potato"), ["sausage","test2.txt"])
self.assertEqual(self.cnx.nlst("potato/sausage"), ["test3.txt", "test4.txt"])
self.cnx.cwd("potato")
self.assertEqual(self.cnx.nlst(), ["sausage","test2.txt"])
self.assertEqual(self.cnx.nlst("sausage"), ["test3.txt", "test4.txt"])
self.cnx.cwd("sausage")
self.assertEqual(self.cnx.nlst(), ["test3.txt", "test4.txt"])
self.cnx.cwd("../..")
for obj in objs:
self.conn.delete_object(self.container, obj)
sleep(ListDirCache.MAX_CACHE_TIME)
self.assertEqual(self.cnx.nlst(), [])
def test_md5(self):
''' MD5 extension'''
self.create_file("testfile.txt", "Hello Moto")
response = self.cnx.sendcmd("MD5 /%s/testfile.txt" % self.container)
self.cnx.delete("testfile.txt")
self.assertEqual(response, '251 "/%s/testfile.txt" 0D933AE488FD55CC6BDEAFFFBAABF0C4' % self.container)
self.assertRaises(ftplib.error_perm, self.cnx.sendcmd, "MD5 /%s" % self.container)
self.assertRaises(ftplib.error_perm, self.cnx.sendcmd, "MD5 /")
def tearDown(self):
# Delete eveything from the container using the API
self.cnx.close()
_, fails = self.conn.get_container(self.container)
for obj in fails:
if "name" in obj:
self.conn.delete_object(self.container, obj["name"])
self.conn.delete_container(self.container)
self.assertEquals(fails, [], "The test failed to clean up after itself leaving these objects: %r" % fails)
if __name__ == '__main__':
unittest.main()
|