123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906 |
- //
- // AutoTest.swift
- // KdanAuto
- //
- // Created by 朱东勇 on 2022/11/25.
- //
- import Foundation
- import AppKit
- var cacheObjects = NSMutableDictionary()
- let operateQueue = OperationQueue()
- class AutoTest : NSObject, AutoTestProtocal {
- var reportString : NSMutableAttributedString? = nil
-
- public var _status : AutoTestStatus = .Normal
-
- var _fileType : String = "RTF"
- var _type : String = "Others"
- var _extention : String = "rtf"
- var _name : String = "对照测试"
- var _params : NSDictionary = [:]
-
- var testFiles : NSArray = NSArray()
- var convertFiles : NSMutableArray = NSMutableArray()
- var convertProgress : Double = 0.0
- var compareFinishedFiles : NSMutableArray = NSMutableArray()
- var compareProgress : Double = 0.0
-
- var testlog : (_ msg:String, _ progress:Double) -> () = {(msg, progress) in
-
- }
-
- class func autoTestFor(_ fileType:NSString ,type:NSString) -> AutoTest? {
- let key = String(fileType) + "." + String(type)
-
- if cacheObjects.value(forKey: key) != nil {
- let object = cacheObjects.value(forKey: key)
-
- return object as? AutoTest
- }
-
- // if let cacheObject as AutoTest {
- // return cacheObject
- // }
-
- let fileTypes = testTypeInfo[fileType] as! NSArray
-
- let clsname = "KdanAuto"//Bundle.main.infoDictionary! ["CFBundleExecutable"]
-
- for item in fileTypes {
- let cItem = item as! NSDictionary
-
- let cType = cItem["Type"] as! NSString
- let cExtention = cItem["Extention"] as! NSString
- let cName = cItem["Name"] as! NSString
- let cParams = cItem["Params"] as? NSDictionary
- if (cType.isEqual(to: type)) {
- let className = String((clsname )+"."+(cItem["Class"] as! String))
- let cl = NSClassFromString(className) as! AutoTest.Type
-
- let object = cl.shared()
- object?._fileType = fileType as String
- object?._type = String(cType)
- object?._extention = String(cExtention)
- object?._name = String(cName)
- if nil != cParams {
- object?._params = cParams ?? [:];
- }
- cacheObjects.setValue(object, forKey: key)
-
- return object
- }
- }
-
- let object = AutoTest.shared()
-
- object?._fileType = fileType as String
- object?._type = String(cType)
- object?._extention = ""
- object?._name = "对照测试"
- cacheObjects.setValue(object, forKey: key)
-
- return object
- }
-
- class func shared() -> AutoTest? {
- return AutoTest()
- }
-
- func fileType() -> String {
- return _fileType
- }
-
- func type() -> String {
- return _type
- }
-
- func name() -> String {
- return _name
- }
-
- func extention() -> String {
- return _extention
- }
-
- func params() -> NSDictionary {
- return _params
- }
-
- func keys() -> NSArray {
- return ["快照"]
- }
-
- func selectedKeys() -> NSArray {
- let userDefaults = UserDefaults.standard
-
- let key = self.fileType() + "." + self.type() + ".selectedKeys"
-
- if userDefaults.value(forKey: key) != nil {
- return userDefaults.value(forKey: key) as! NSArray
- }
-
- self.setSelectedKeys(self.keys())
-
- return self.keys()
- }
-
- func setSelectedKeys(_ keys: NSArray) {
- let userDefaults = UserDefaults.standard
-
- let key = self.fileType() + "." + self.type() + ".selectedKeys"
-
- userDefaults.setValue(keys, forKey: key)
- userDefaults.synchronize()
- }
-
- func needCompareTest() -> Bool {
- return self.selectedKeys().contains("快照")
- }
-
- func status() -> AutoTestStatus {
- return _status
- }
-
- func setStatus(_ status:AutoTestStatus) {
- _status = status
- }
-
-
- // Auto Test
- func autoTest(_ complention:@escaping (_ object:AutoTest, _ report:NSAttributedString?) -> ()) {
- self.compareFinishedFiles.removeAllObjects();
- self.convertFiles.removeAllObjects()
-
- NSLog(String("转换\(self.type())"))
- let needCompare = self.selectedKeys().contains("快照")
-
- if !needCompare {
- // 未勾选 ”快照“ 选项
- self._status = .Finished
- complention(self, self.reportString)
- return
- }
-
- clearCacheFiles()
-
- if hasOriginFile() {
- //目录中有需要执行对照的文件
- DispatchQueue.global().async {
- autoreleasepool {
- self._status = .Process
- self.reportString = NSMutableAttributedString.init(string: "\n【\(String(self.fileType())) - \(self.name())】快照比对开始!\n",
- attributes:[.foregroundColor : NSColor.blue])
- let files = DataModel.shared.originFilesFor(self.fileType(), type: self.type()) as [String]
- self.testFiles = NSArray(array: files);
-
- let checkDirectory = self.checkFileDirectory()
- let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
-
- if (files.count > 0) {
- try? FileManager.default.createDirectory(atPath: checkDirectory, withIntermediateDirectories: true);
- try? FileManager.default.createDirectory(atPath: resultDirectory, withIntermediateDirectories: true);
- }
-
- var tDegree = Double(0);
- var tCount = Int(0)
- var fileIndex = 0
- var compareIndex = 0;
- var convertFinished = false;
-
- // 用 Block 递归调用形式,确保转档单任务执行
- var convertFileBlock = { (files:[String]) in }
- convertFileBlock = { (files:[String]) in
- if (fileIndex >= files.count) {
- convertFinished = true;
- return
- }
-
- //
- let fileName = files[fileIndex];
- autoreleasepool {
- let checkDirectory = self.checkFileDirectory()
- let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
-
- let fName = NSString(string: fileName).deletingPathExtension
- let originPath = NSString(string: originDirectory).appendingPathComponent(fName+".pdf")
- let resultPath = NSString(string: resultDirectory).appendingPathComponent(fName+"."+self.extention())
- // let checkPath = NSString(string: checkDirectory).appendingPathComponent(fName+"."+_extention)
-
-
- // self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】开始转换文件 \"\(fName)\"\n",
- // attributes:[.foregroundColor : NSColor.blue]))
- // ...
- // 执行异步转换过程
- let index = self.testFiles.index(of: fileName);
- if (index != NSNotFound) {
- self.convertProgress = Double(index) / Double(self.testFiles.count)
- }
- self.convertFiles.add(fileName);
- self.testlog("开始转换:"+fileName, (self.compareProgress + self.convertProgress)/2.0)
- self.process(originPath, resultPath: resultPath) { status in
- DispatchQueue.global().async {
- Thread.sleep(forTimeInterval: 0.3)
- fileIndex += 1;
- convertFileBlock(files)
-
- self.compareResult(fileName, resultPath: resultPath, status: status, needCompare: needCompare) { degree in
- autoreleasepool {
- if (degree >= 0.0) {
- tDegree += degree;
- tCount += 1;
- }
-
- compareIndex += 1;
- if (convertFinished && compareIndex >= files.count) {
- //所有任务已经执行完成
- TestDegreeManager.shared().set(((tCount != 0) ? tDegree/Double(tCount) : 0.0),
- fileType: self.fileType(),
- type: self.type())
-
- self._status = .Finished
- DispatchQueue.main.async {
- complention(self, self.reportString);
- }
- }
- }
- };
- }
- }
-
- }
- }
- // 启动第0号任务
- convertFileBlock(files);
- }
- }
-
-
- }else {
- _status = .Normal
-
- DispatchQueue.main.async {
- autoreleasepool {
- complention(self, nil)
- }
- }
- }
- }
-
- func process(_ originPath:String, resultPath:String, complention:@escaping (_ status:Int) -> ()) {
- return process(originPath, resultPath: resultPath, params: self.params(), complention: complention)
- }
-
- func process(_ originPath:String, resultPath:String, params:NSDictionary, complention:@escaping (_ status:Int) -> ()) {
- FileConverter.shared().converter(originPath, inDesPath: resultPath, params: params) { status in
- // 修复转 PNG 实际图片为 JPG 问题, 导致无法匹配问题
- if (NSArray(array: ["png", "PNG"]).contains(NSString(string: resultPath).pathExtension)) {
- let items = (FileManager.default.subpaths(atPath: resultPath) ?? []) as [String]
- for item in items {
- if NSArray(array: ["jpg", "JPG"]).contains(NSString(string:item).pathExtension) {
- let path = NSString(string: resultPath).appendingPathComponent(item);
-
- try? FileManager.default.moveItem(atPath: path,
- toPath: NSString(string: path).deletingPathExtension+".png");
- }
- }
- }
-
- complention(status)
- }
- }
-
- func compareResult(_ fileName:String, resultPath:String, status:Int, needCompare:Bool, complention:@escaping (_ degree:Double) -> ()) {
- NSLog("开始识别:\(fileName)")
- self.testlog("开始对比:"+fileName, (self.convertProgress + self.compareProgress)/2.0)
- let checkDirectory = self.checkFileDirectory()
- // let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
- let fName = NSString(string: fileName).deletingPathExtension
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: resultPath, isDirectory:&isDirectory) && status == 1 {
- // compare screenshoot between result file with check file
- if needCompare {
- let items = NSMutableArray()
- if (isDirectory.boolValue) {
- let searchItems = try! FileManager.default.contentsOfDirectory(atPath: resultPath)
- for item in NSArray(array: searchItems) {
- let ext = NSString(string: item as! String).pathExtension.lowercased()
- if (NSArray(array: [self.extention()]).contains(ext)) {
- let fileName = NSString(string: fName+"."+self.extention()+"/\(item as! String)").deletingPathExtension
- items.add(fileName)
- }
- }
- }else {
- items.add(fName)
- }
- var subDegree = Double(0);
- var subCount = Int(0)
- var itemIndex = 0;
- // let maxProcessCount = min(3, max(items.count, 1))
-
- var processItemBlock = {(items:NSMutableArray) in
-
- }
- processItemBlock = {(items:NSMutableArray) in
- if (itemIndex >= items.count) {
- // if (itemIndex >= (items.count + (maxProcessCount - 1))) {
- if subCount != 0 {
- subDegree = subDegree/Double(subCount)
- }else {
- subDegree = 0.0
- }
-
- TestDegreeManager.shared().set(subDegree,
- fileType: self.fileType(),
- type: self.type(),
- fileName: fileName)
- DispatchQueue.global().async {
- autoreleasepool {
- // 执行下一个文件转档
- complention(subDegree)
- NSLog("结束识别:\(fileName)");
-
- let index = self.testFiles.index(of: fileName);
- if (index != NSNotFound) {
- self.compareProgress = Double(index) / Double(self.testFiles.count)
- }
- self.compareFinishedFiles.add(fileName);
- self.testlog("对比完成:"+fileName, (self.compareProgress + self.convertProgress)/2.0)
- }
- }
- // }
- return
- }
- DispatchQueue.global().async {
- autoreleasepool {
- let item = items[itemIndex]
- NSLog("\(itemIndex):\(item)")
- let subFileName = item as! String
- let subResultPath = NSString(string: resultDirectory).appendingPathComponent(subFileName+"."+self.extention())
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subFileName+".\(self.extention())")\"快照生成中\n",
- attributes:[.foregroundColor : NSColor.black]))
- objc_sync_exit(self)
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+".jpg")
- let cComparePath = NSString(string: checkDirectory).appendingPathComponent(subFileName+".jpg")
-
-
- ProcessThumbnal.process(subResultPath, desPath: rComparePath, outputSize: CGSize.init(width: 2048, height: 2048)) { processSuccess in
- autoreleasepool {
- if ( processSuccess &&
- FileManager.default.fileExists(atPath: rComparePath)) {
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: rComparePath, isDirectory: &isDirectory) && isDirectory.boolValue {
- // 单个文件生成批量快照目录情形
- let subImages = try! FileManager.default.contentsOfDirectory(atPath: rComparePath)
-
- var compareCount = 0;
- for sImageName in subImages {
- let subImageName = sImageName
- autoreleasepool {
- let pathCompotent = "/"+subImageName
- ImageProcess.compareJPEG(String(rComparePath+pathCompotent), checkPath: String(cComparePath+pathCompotent), processCover: true, complention: { degree in
- NSLog(String("文件夹,\(subFileName+".jpg"+pathCompotent)"))
-
- TestDegreeManager.shared().set(degree, fileType: self.fileType(), type: self.type(),
- fileName: fileName, refFilePath: subFileName+".jpg"+pathCompotent)
-
- if degree == -1 {
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath+pathCompotent)\"快照对比失败,生成快照失败或无比对文件\n",
- attributes:[.foregroundColor : NSColor.red]))
- objc_sync_exit(self)
- }else {
- var color = NSColor.black
- if fabs(degree-100.0) >= 0.01 {
- color = NSColor.red
- }
- subDegree += degree
- subCount += 1
-
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath+pathCompotent)\"快照对比完成,图像相似度 \(degree)%\n",
- attributes:[.foregroundColor : color]))
- objc_sync_exit(self)
- }
-
- compareCount += 1
- if (compareCount >= subImages.count) {
- DispatchQueue.global().async {
- autoreleasepool {
- itemIndex += 1
- processItemBlock(items)
- }
- }
- }
- })
- }
- }
-
- if (subImages.count == 0) {
- // complention
- DispatchQueue.global().async {
- autoreleasepool {
- itemIndex += 1
- processItemBlock(items)
- }
- }
- return
- }
- }else {
- // 单个文件生成单个快照文件情形
- ImageProcess.compareJPEG(rComparePath, checkPath: cComparePath, processCover: true, complention: { degree in
- NSLog(String("非文件夹,\(subFileName+".jpg")"))
-
- TestDegreeManager.shared().set(degree, fileType: self.fileType(), type: self.type(),
- fileName: fileName, refFilePath: subFileName+".jpg")
-
- if degree == -1 {
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath)\"快照对比失败,生成快照失败或无比对文件\n",
- attributes:[.foregroundColor : NSColor.red]))
- objc_sync_exit(self)
- }else {
- var color = NSColor.black
- if fabs(degree-100.0) >= 0.01 {
- color = NSColor.red
- }
- subDegree += degree
- subCount += 1
-
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath)\"快照对比完成,图像相似度 \(degree)%\n",
- attributes:[.foregroundColor : color]))
- objc_sync_exit(self)
- }
-
- // complention
- DispatchQueue.global().async {
- autoreleasepool {
- itemIndex += 1
- processItemBlock(items)
- }
- }
- })
- }
- }else {
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath)\"快照生成失败\n",
- attributes:[.foregroundColor : NSColor.red]))
- objc_sync_exit(self)
-
- // complention
- DispatchQueue.global().async {
- autoreleasepool {
- itemIndex += 1
- processItemBlock(items)
- }
- }
- }
- }
- }
- }
- }
- }
- processItemBlock(items)
- // while (itemIndex < (maxProcessCount - 1)) {
- // itemIndex += 1;
- // processItemBlock(items)
- // }
-
- return
- }
- }else {
- if (status == 0) {
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(fName)\"转档失败!\n",
- attributes:[.foregroundColor : NSColor.red]))
- objc_sync_exit(self)
- }else if (status == -1 || status == -2) {
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(fName)\"文档无法打开!\n",
- attributes:[.foregroundColor : NSColor.red]))
- objc_sync_exit(self)
- }else if (status == -3) {
- objc_sync_enter(self)
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(fName)\"转档中 Crash!\n",
- attributes:[.foregroundColor : NSColor.red]))
- objc_sync_exit(self)
- }
- }
-
- DispatchQueue.global().async {
- autoreleasepool {
- // 执行下一个文件转档
- NSLog("结束识别:\(fileName)");
-
- objc_sync_exit(self)
- let index = self.testFiles.index(of: fileName);
- if (index != NSNotFound) {
- self.compareProgress = Double(index) / Double(self.testFiles.count)
- }
- self.compareFinishedFiles.add(fileName);
- objc_sync_exit(self)
-
- self.testlog("对比完成:"+fileName, (self.compareProgress + self.convertProgress)/2.0)
- complention(0)
- }
- }
- }
-
-
- ///
- func testReport() -> NSAttributedString? {
- return reportString
- }
-
- func degree() -> Double {
- return TestDegreeManager.shared().degreeFor(self.fileType(), type: self.type())
- }
-
- // func testReportOfFile(_ fileName:String) -> NSAttributedString? {
- //
- // }
-
- func degreeOfFile(_ fileName:String) -> Double {
- return TestDegreeManager.shared().degreeFor(self.fileType(), type: self.type(), fileName: fileName)
- }
-
- func degreeOfFile(_ fileName:String, refFilePath:String?) -> Double {
- if refFilePath != nil {
- return TestDegreeManager.shared().degreeFor(self.fileType(), type: self.type(), fileName: fileName, refFilePath: refFilePath)
- }else {
- return degreeOfFile(fileName)
- }
- }
-
-
- // Update Refrence image
- func canUpdateRefImage() -> Bool {
- let files = DataModel.shared.originFilesFor(_fileType, type: _type) as [String]
- let checkDirectory = self.checkFileDirectory()
- // let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
-
- for fileName:String in files {
- let fName = NSString(string: fileName).deletingPathExtension
- // let originPath = NSString(string: originDirectory).appendingPathComponent(fName+".pdf")
- let resultPath = NSString(string: resultDirectory).appendingPathComponent(fName+"."+_extention)
- // let checkPath = NSString(string: checkDirectory).appendingPathComponent(fName+"."+_extention)
-
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: resultPath, isDirectory:&isDirectory) {
- // compare screenshoot between result file with check file
- let items = NSMutableArray()
- if (isDirectory.boolValue) {
- let searchItems = try! FileManager.default.contentsOfDirectory(atPath: resultPath)
- for item in NSArray(array: searchItems) {
- let ext = NSString(string: item as! String).pathExtension.lowercased()
- if NSArray(array: [_extention]).contains(ext) {
- let fileName = NSString(string: fName+"."+_extention+"/\(item as! String)").deletingPathExtension
- items.add(fileName)
- }
- }
- }else {
- items.add(fName)
- }
-
- for item in NSArray(array: items) {
- let subFileName = item as! String
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+".jpg")
- let cComparePath = NSString(string: checkDirectory).appendingPathComponent(subFileName+".jpg")
-
- if FileManager.default.fileExists(atPath: rComparePath) {
- if !FileManager.default.fileExists(atPath: cComparePath) {
- return true
- }
-
- let rfs = try! FileManager.default.attributesOfItem(atPath: rComparePath)[FileAttributeKey.size] as! NSNumber
- let cfs = try! FileManager.default.attributesOfItem(atPath: cComparePath)[FileAttributeKey.size] as! NSNumber
- if rfs.int64Value != cfs.int64Value {
- return true
- }
- }
- }
- }
- }
-
- return false
- }
-
- func updateRefImage() {
- let files = DataModel.shared.originFilesFor(_fileType, type: _type) as [String]
-
- for fileName in files {
- updateRefImage(fileName)
- }
- }
-
- func canUpdateRefImage(_ fileName:String) -> Bool {
- let checkDirectory = self.checkFileDirectory()
- // let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
-
- let fName = NSString(string: fileName).deletingPathExtension
- // let originPath = NSString(string: originDirectory).appendingPathComponent(fName+".pdf")
- let resultPath = NSString(string: resultDirectory).appendingPathComponent(fName+"."+_extention)
- // let checkPath = NSString(string: checkDirectory).appendingPathComponent(fName+"."+_extention)
-
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: resultPath, isDirectory:&isDirectory) {
- // compare screenshoot between result file with check file
- let items = NSMutableArray()
- if (isDirectory.boolValue) {
- let searchItems = try! FileManager.default.contentsOfDirectory(atPath: resultPath)
- for item in NSArray(array: searchItems) {
- let ext = NSString(string: item as! String).pathExtension.lowercased()
- if NSArray(array: [_extention]).contains(ext) {
- let fileName = NSString(string: fName+"."+_extention+"/\(item as! String)").deletingPathExtension
- items.add(fileName)
- }
- }
- }else {
- items.add(fName)
- }
-
- for item in NSArray(array: items) {
- let subFileName = item as! String
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+".jpg")
- let cComparePath = NSString(string: checkDirectory).appendingPathComponent(subFileName+".jpg")
-
- if FileManager.default.fileExists(atPath: rComparePath) {
- if !FileManager.default.fileExists(atPath: cComparePath) {
- return true
- }
-
- let rfs = try! FileManager.default.attributesOfItem(atPath: rComparePath)[FileAttributeKey.size] as! NSNumber
- let cfs = try! FileManager.default.attributesOfItem(atPath: cComparePath)[FileAttributeKey.size] as! NSNumber
- if rfs.int64Value != cfs.int64Value {
- return true
- }
- }
- }
- }
-
- return false
- }
-
- func updateRefImage(_ fileName:String) {
- let checkDirectory = self.checkFileDirectory()
- // let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
-
- let fName = NSString(string: fileName).deletingPathExtension
- // let originPath = NSString(string: originDirectory).appendingPathComponent(fName+".pdf")
- let resultPath = NSString(string: resultDirectory).appendingPathComponent(fName+"."+_extention)
- // let checkPath = NSString(string: checkDirectory).appendingPathComponent(fName+"."+_extention)
-
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: resultPath, isDirectory:&isDirectory) {
- // compare screenshoot between result file with check file
- let items = NSMutableArray()
- if (isDirectory.boolValue) {
- let searchItems = try! FileManager.default.contentsOfDirectory(atPath: resultPath)
- for item in NSArray(array: searchItems) {
- let ext = NSString(string: item as! String).pathExtension.lowercased()
- if NSArray(array: [_extention]).contains(ext) {
- let fileName = NSString(string: fName+"."+_extention+"/\(item as! String)").deletingPathExtension
- items.add(fileName)
- }
- }
- }else {
- items.add(fName)
- }
-
- for item in NSArray(array: items) {
- let subFileName = item as! String
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+".jpg")
- let cComparePath = NSString(string: checkDirectory).appendingPathComponent(subFileName+".jpg")
-
- if FileManager.default.fileExists(atPath: rComparePath) {
- if FileManager.default.fileExists(atPath: cComparePath) {
- try! FileManager.default.removeItem(atPath: cComparePath)
- }
- try! FileManager.default.createDirectory(atPath: NSString(string: cComparePath).deletingLastPathComponent,
- withIntermediateDirectories: true)
- try! FileManager.default.copyItem(atPath: rComparePath, toPath: cComparePath)
- }
- }
- }
- }
-
- func compareFiles() -> NSArray? {
- let items = NSMutableArray()
- let files = DataModel.shared.originFilesFor(_fileType, type: _type) as [String]
-
- for fileName in files {
- let sItems = compareFiles(fileName)
- if sItems != nil && sItems!.count != 0 {
- items.addObjects(from: sItems as! [Any])
- }
- }
-
- return items
- }
-
- func compareFiles(_ fileName: String) -> NSArray? {
- let files = NSMutableArray()
-
- let checkDirectory = self.checkFileDirectory()
- // let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
-
- let fName = NSString(string: fileName).deletingPathExtension
- // let originPath = NSString(string: originDirectory).appendingPathComponent(fName+".pdf")
- let resultPath = NSString(string: resultDirectory).appendingPathComponent(fName+"."+_extention)
- // let checkPath = NSString(string: checkDirectory).appendingPathComponent(fName+"."+_extention)
-
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: resultPath, isDirectory:&isDirectory) {
- // compare screenshoot between result file with check file
- let items = NSMutableArray()
- if (isDirectory.boolValue) {
- let searchItems = try? FileManager.default.contentsOfDirectory(atPath: resultPath)
- for item in NSArray(array: searchItems ?? []) {
- let ext = NSString(string: item as! String).pathExtension.lowercased()
- if (NSArray(array: [_extention]).contains(ext) &&
- !NSString(string: item as! String).contains("_cover.png")) {
- let fileName = NSString(string: fName+"."+_extention+"/\(item as! String)").deletingPathExtension
- items.add(fileName)
- }
- }
- }else {
- items.add(fName)
- }
-
- let nitems = items.sortedArray { str1, str2 in
- let s1 = NSString(string: str1 as! String).deletingPathExtension
- let s2 = NSString(string: str2 as! String).deletingPathExtension
-
- if (NSString(string: s1).length != NSString(string: s2).length) {
- if (NSString(string: s1).length > NSString(string: s2).length) {
- return .orderedDescending
- }else {
- return .orderedAscending
- }
- }
-
- return NSString(string: s1).compare(s2)
- }
-
- for item in nitems {
- let subFileName = item as! String
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+".jpg")
- let cComparePath = NSString(string: checkDirectory).appendingPathComponent(subFileName+".jpg")
-
- let fileInfo = NSMutableDictionary.fileInfoWith(fileName,
- refFilePath: subFileName+".jpg",
- resultPath: rComparePath,
- comparePath: cComparePath,
- objc: self)
- files.add(fileInfo)
- }
- }
-
- return files
- }
-
-
-
- /// Path
- func originFileDirectory() -> String {
- return DataModel.shared.directoryPath().appendingFormat("/\(self.fileType())/\(self.type())/\(kOriginPathComponent)")
- }
-
- func resultFileDirectory() -> String {
- return DataModel.shared.directoryPath().appendingFormat("/\(self.fileType())/\(self.type())/\(kResultPathComponent)")
- }
-
- func checkFileDirectory() -> String {
- return DataModel.shared.directoryPath().appendingFormat("/\(self.fileType())/\(self.type())/\(kCheckPathComponent)")
- }
-
- // check File Exist
- func hasOriginFile() -> Bool {
- if FileManager.default.fileExists(atPath: self.originFileDirectory()) {
- let files = try? FileManager.default.subpathsOfDirectory(atPath: self.originFileDirectory())
- return (files ?? []).count > 0
- }
-
- return false
- }
-
- func hasResultFile() -> Bool {
- if FileManager.default.fileExists(atPath: self.resultFileDirectory()) {
- let files = try? FileManager.default.subpathsOfDirectory(atPath: self.resultFileDirectory())
- return (files ?? []).count > 0
- }
-
- return false
- }
-
- ///
- func clearCacheFiles() {
- reportString = NSMutableAttributedString.init();
-
- let resultDirectory = self.resultFileDirectory()
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: resultDirectory, isDirectory: &isDirectory) && isDirectory.boolValue {
- let searchItems = try! FileManager.default.contentsOfDirectory(atPath: resultDirectory)
- for item in NSArray(array: searchItems) {
- let path = NSString(string: resultDirectory).appendingPathComponent(item as! String)
- if FileManager.default.fileExists(atPath: path) {
- try! FileManager.default.removeItem(atPath: path)
- }
- }
- }
- }
- }
- extension AutoTest {
- func stringToImage(_ string:String) ->NSImage? {
- let length = Int(string.lengthOfBytes(using: .utf8)/2)
-
- let bytes = malloc(length)!
-
- for i in 0..<length {
- let index = i
- let subString = String(NSString(string: string).substring(with: NSMakeRange(Int(index * 2), 2)))
- bytes.storeBytes(of: UInt8(hexForString(subString)), as: UInt8.self)
- }
-
- let data = Data.init(bytes: bytes, count: length)
- let image = NSImage.init(data: data)
-
- return image
- }
-
- func hexForString(_ string:String) -> UInt8 {
- let chars = string.utf8CString
-
- if (string.lengthOfBytes(using: .utf8) >= 2) {
- return UInt8(intvalueForChar(chars[0]) * 16 + intvalueForChar(chars[1]))
- }
-
- return UInt8(0)
- }
-
- func intvalueForChar(_ char:CChar) -> UInt8 {
- let iValue = char
-
- // 0 ~ 9s
- if iValue >= 48 && iValue <= 57 {
- return UInt8(iValue - 48)
- }else if iValue >= 65 && iValue <= 70 {
- return UInt8(iValue - 65 + 10)
- }else if iValue >= 97 && iValue <= 102 {
- return UInt8(iValue - 97 + 10)
- }
-
- return UInt8(0)
- }
- }
- extension AutoTest {
- func isEqual(to object: AutoTest) -> Bool {
- return (NSString(string: self.className).isEqual(to: object.className) &&
- NSString(string: self.fileType()).isEqual(to: object.fileType()) &&
- NSString(string: self.type()).isEqual(to: object.type()) &&
- NSString(string: self.extention()).isEqual(to: object.extention()))
- }
- }
|