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
|
#!/usr/bin/env python
# vim: expandtab sw=4 ts=4 sts=4:
#
# Copyright © 2003 - 2018 Matthias Blaesing <matthias.blaesing@rwth-aachen.de>
#
# This file is part of python-gammu <https://wammu.eu/python-gammu/>
#
# This program 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 2 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
"""
This file should provide me with a test frame for the filesystem
functions. It can't be run automatically, but you should be able
to decide, wheather the output looks sensible
BEWARE - the test WILL TOUCH AND WRITE FILESYSTEM!!
I asume you call the script from the directory were it lays and
have the grafic there and you have write permission there and that
there is a file called cgi.jpg to be used as test file
READY:
- DeleteFile
- AddFilePart
- GetFilePart
- GetNextRootFolder
- GetNextFileFolder
- GetFolderListing
- SetFileAttributes
- DeleteFolder
- GetFileSystemStatus
- AddFolder
"""
import argparse
import datetime
import os
import sys
import gammu
def main():
parser = argparse.ArgumentParser(usage="usage: %(prog)s [options]")
parser.add_argument(
"-c",
"--config",
action="store",
type=str,
dest="config",
default=None,
help="Config file path",
)
parser.add_argument(
"-f",
"--folder",
action="store",
type=str,
dest="folder",
default=None,
help="Folder to be used for testing",
)
parser.add_argument(
"-t",
"--test-file",
action="store",
type=str,
dest="testfile",
default="./data/cgi.jpg",
help="Local file to be used for testing",
)
args = parser.parse_args()
if args.folder is None:
print("You have to select folder where testing will be done!")
print("And even better, you should read the script before you run it.")
sys.exit(1)
if not os.path.exists(args.testfile):
print("You have to select file which will be used for testing!")
sys.exit(1)
state_machine = gammu.StateMachine()
if args.config is not None:
state_machine.ReadConfig(Filename=args.config)
else:
state_machine.ReadConfig()
state_machine.Init()
# Check GetFileSystemStatus
print("Expection: Info about filesystem usage")
try:
fs_info = state_machine.GetFileSystemStatus()
fs_info["Total"] = fs_info["Free"] + fs_info["Used"]
print("Used: {Used:d}, Free: {Free:d}, Total: {Total:d}".format(**fs_info))
except gammu.ERR_NOTSUPPORTED:
print("You will have to live without this knowledge")
# Check DeleteFile
print("\n\nExpection: Deleting cgi.jpg from memorycard")
try:
state_machine.DeleteFile(unicode(args.folder + "/cgi.jpg"))
except gammu.ERR_FILENOTEXIST:
print("Oh well - we copy it now ;-) (You SHOULD read this)")
# Check AddFilePart
print("\n\nExpection: Put cgi.jpg onto Memorycard on phone")
file_handle = open(args.testfile, "rb")
file_stat = os.stat(args.testfile)
ttime = datetime.datetime.fromtimestamp(file_stat[8])
file_f = {
"ID_FullName": args.folder,
"Name": "cgi.jpg",
"Modified": ttime,
"Folder": 0,
"Level": 1,
"Used": file_stat[6],
"Buffer": file_handle.read(),
"Type": "Other",
"Protected": 0,
"ReadOnly": 0,
"Hidden": 0,
"System": 0,
"Handle": 0,
"Pos": 0,
"Finished": 0,
}
while not file_f["Finished"]:
file_f = state_machine.AddFilePart(file_f)
# Check GetFilePart
print("\n\nExpection: Get cgi.jpg from memorycard and write it as test.jpg")
with open("./test.jpg", "wb") as handle:
file_f = {"ID_FullName": args.folder + "/cgi.jpg", "Finished": 0}
while not file_f["Finished"]:
file_f = state_machine.GetFilePart(file_f)
handle.write(file_f["Buffer"])
handle.flush()
# Check correct transfer
print("\n\nExpection: test.jpg and cgi.jpg to be the same")
f1 = open(args.testfile, "rb")
f2 = open("./test.jpg", "rb")
if f1.read() == f2.read():
print("Same files")
else:
print("Files differ!")
os.remove("./test.jpg")
# Check GetNextRootFolder
print("\n\nExpection: Root Folder List")
try:
file_obj = state_machine.GetNextRootFolder("")
while 1:
print(file_obj["ID_FullName"] + " - " + file_obj["Name"])
try:
file_obj = state_machine.GetNextRootFolder(file_obj["ID_FullName"])
except gammu.ERR_EMPTY:
break
except gammu.ERR_NOTSUPPORTED:
print("Not supported...")
# Check GetNextFileFolder
print("\n\nExpection: Info for a file of the phone (cgi.jpg)")
file_f = state_machine.GetNextFileFolder(1)
while 1:
if file_f["Name"] != "cgi.jpg":
file_f = state_machine.GetNextFileFolder(0)
else:
attribute = ""
if file_f["Protected"]:
attribute = attribute + "P"
if file_f["ReadOnly"]:
attribute = attribute + "R"
if file_f["Hidden"]:
attribute = attribute + "H"
if file_f["System"]:
attribute = attribute + "S"
print(
"ID: "
+ file_f["ID_FullName"]
+ "\n"
+ "Name: "
+ file_f["Name"]
+ "\n"
+ "Folder: "
+ str(file_f["Folder"])
+ "\n"
+ "Used: "
+ str(file_f["Used"])
+ "\n"
+ "Modified: "
+ file_f["Modified"].strftime("%x %X")
+ "\n"
+ "Type: "
+ file_f["Type"]
+ "\n"
+ "Level: "
+ str(file_f["Level"])
+ "\n"
+ "Attribute: "
+ attribute
)
break
# Check SetFileAttributes
# Protected is spared, as my mobile nokia 6230i says it's unsupported
print(
"\n\nExpection: Modifying attributes "
"(readonly=1, protected=0, system=1, hidden=1)"
)
state_machine.SetFileAttributes(unicode(args.folder + "/cgi.jpg"), 1, 0, 1, 1)
# Check GetFolderListing
print("\n\nExpection: Listing of cgi.jpg's properties")
file_f = state_machine.GetFolderListing(unicode(args.folder), 1)
while 1:
if file_f["Name"] != "cgi.jpg":
file_f = state_machine.GetFolderListing(unicode(args.folder), 0)
else:
attribute = ""
if file_f["Protected"]:
attribute = attribute + "P"
if file_f["ReadOnly"]:
attribute = attribute + "R"
if file_f["Hidden"]:
attribute = attribute + "H"
if file_f["System"]:
attribute = attribute + "S"
print(
"ID: "
+ file_f["ID_FullName"]
+ "\n"
+ "Name: "
+ file_f["Name"]
+ "\n"
+ "Folder: "
+ str(file_f["Folder"])
+ "\n"
+ "Used: "
+ str(file_f["Used"])
+ "\n"
+ "Modified: "
+ file_f["Modified"].strftime("%x %X")
+ "\n"
+ "Type: "
+ file_f["Type"]
+ "\n"
+ "Level: "
+ str(file_f["Level"])
+ "\n"
+ "Attribute: "
+ attribute
)
break
# Check DeleteFile
print("\n\nExpection: Deletion of cgi.jpg from memorycard")
try:
state_machine.DeleteFile(unicode(args.folder + "cgi.jpg"))
print("Deleted")
except gammu.ERR_FILENOTEXIST:
print("Something is wrong ...")
# Check AddFolder
print('\n\nExpection: Creation of a folder on the memorycard "42alpha"')
state_machine.AddFolder(unicode(args.folder), "42alpha")
# Check GetFolderListing again *wired*
print("\n\nExpection: Print properties of newly created folder")
file_f = state_machine.GetFolderListing(unicode(args.folder), 1)
while 1:
if file_f["Name"] != "42alpha":
file_f = state_machine.GetFolderListing(unicode(args.folder), 0)
else:
attribute = ""
if file_f["Protected"]:
attribute = attribute + "P"
if file_f["ReadOnly"]:
attribute = attribute + "R"
if file_f["Hidden"]:
attribute = attribute + "H"
if file_f["System"]:
attribute = attribute + "S"
print(
"ID: "
+ file_f["ID_FullName"]
+ "\n"
+ "Name: "
+ file_f["Name"]
+ "\n"
+ "Folder: "
+ str(file_f["Folder"])
+ "\n"
+ "Used: "
+ str(file_f["Used"])
+ "\n"
+ "Modified: "
+ file_f["Modified"].strftime("%x %X")
+ "\n"
+ "Type: "
+ file_f["Type"]
+ "\n"
+ "Level: "
+ str(file_f["Level"])
+ "\n"
+ "Attribute: "
+ attribute
)
break
# Check DeleteFolder
print('\n\nExpection: Deletion of previously created folder "42alpha"')
state_machine.DeleteFolder(unicode(args.folder + "/42alpha"))
if __name__ == "__main__":
main()
|