123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- //
- // AutoTest.swift
- // KdanAuto
- //
- // Created by 朱东勇 on 2022/11/25.
- //
- import Foundation
- import AppKit
- var cacheObjects = NSMutableDictionary()
- 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"
-
- 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
- if (cType.isEqual(to: type)) {
- let className = String((clsname )+"."+(cItem["Class"] as! String)) 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)
- cacheObjects.setValue(object, forKey: key)
-
- return object
- }
- }
-
- let object = AutoTest.shared()
-
- object?._fileType = fileType as String
- object?._type = String(cType)
- object?._extention = ""
- 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 "未指定类型对照测试"
- }
-
- 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 status() -> AutoTestStatus {
- return _status
- }
-
- func setStatus(_ status:AutoTestStatus) {
- _status = status
- }
-
- // Auto Test
- func autoTest() {
- clearCacheFiles()
-
- if hasOriginFile() {
- let needCompare = self.selectedKeys().contains("快照")
-
- if !needCompare {
- _status = .Finished
- return
- }
-
- _status = .Process
- reportString = NSMutableAttributedString.init(string: "\n【\(String(self.fileType())) - \(self.name())】快照比对开始!\n",
- attributes:[.foregroundColor : NSColor.blue])
- let files = DataModel.shared.originFilesFor(_fileType, type: _type) as [String]
-
- let checkDirectory = self.checkFileDirectory()
- let originDirectory = self.originFileDirectory()
- let resultDirectory = self.resultFileDirectory()
- for fileName 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)
-
-
- reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】开始转换文件 \"\(fName)\"\n",
- attributes:[.foregroundColor : NSColor.blue]))
- // ...
- // 执行转换过程
- let convertSemaphore = DispatchSemaphore(value: 0)
- var success = false
- let convertQueue = DispatchQueue.global()
- convertQueue.async {
- success = FileConverter.shared().converter(originPath, inDesPath: resultPath)
-
- convertSemaphore.signal()
- }
- convertSemaphore.wait()
-
-
- var isDirectory = ObjCBool(false)
- if FileManager.default.fileExists(atPath: resultPath, isDirectory:&isDirectory) && success {
- // 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: [_extention]).contains(ext) {
- let fileName = NSString(string: fName+"."+_extention+"/\(item as! String)").deletingPathExtension
- items.add(fileName)
- }
- }
- }else {
- items.add(fName)
- }
-
- for item in items {
- let subFileName = item as! String
- let subResultPath = NSString(string: resultDirectory).appendingPathComponent(subFileName+"."+_extention)
-
- reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subFileName+".\(_extention)")\"快照生成中\n",
- attributes:[.foregroundColor : NSColor.black]))
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+"_\(DataModel.shared.latestReportID()!).jpg")
- let cComparePath = NSString(string: checkDirectory).appendingPathComponent(subFileName+".jpg")
-
-
- let processThumbSemaphore = DispatchSemaphore(value: 0)
- var processSuccess = false
- let thumbnailQueue = DispatchQueue.global()
- thumbnailQueue.async {
- processSuccess = ProcessThumbnal.process(subResultPath, desPath: rComparePath, outputSize: CGSize.init(width: 2048, height: 2048))
-
- if ( processSuccess &&
- FileManager.default.fileExists(atPath: rComparePath)) {
-
- let degree = self.compareJPEG(rComparePath, checkPath: cComparePath)
-
- if degree == -1 {
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath)\"快照对比失败,生成快照失败或无比对文件\n",
- attributes:[.foregroundColor : NSColor.red]))
- }else {
- var color = NSColor.black
- if fabs(degree-100.0) >= 0.01 {
- color = NSColor.red
- }
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath)\"快照对比完成,图像相似度 \(degree)%\n",
- attributes:[.foregroundColor : color]))
- }
- }else {
- self.reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(subResultPath)\"快照生成失败\n",
- attributes:[.foregroundColor : NSColor.red]))
- }
-
- processThumbSemaphore.signal()
- }
- processThumbSemaphore.wait()
-
- }
- }
- }else {
- reportString?.append(NSMutableAttributedString.init(string: "【\(String(self.fileType())) - \(self.name())】文件 \"\(fName)\"转档失败!\n",
- attributes:[.foregroundColor : NSColor.red]))
- }
- }
-
- _status = .Finished
- }else {
- _status = .Normal
- }
- }
-
- func testReport() -> NSAttributedString? {
- return reportString
- }
-
-
- // Image compare
- func compareJPEG(_ resultPath:String, checkPath:String) -> Double {
- if !FileManager.default.fileExists(atPath: resultPath) || !FileManager.default.fileExists(atPath: checkPath) {
- return -1
- }
-
- let rImage = NSImage.init(contentsOfFile: resultPath) ?? nil
- let cImage = NSImage.init(contentsOfFile: checkPath) ?? nil
-
- if nil == rImage || nil == cImage {
- return -1
- }
-
- let resultImage = rImage as! NSImage
- let checkImage = cImage as! NSImage
-
- let resultImageRep = NSBitmapImageRep.init(cgImage: resultImage.cgImage(forProposedRect: nil, context: nil, hints: nil)!)
- let checkImageRep = NSBitmapImageRep.init(cgImage: checkImage.cgImage(forProposedRect: nil, context: nil, hints: nil)!)
-
- let rWidth = resultImageRep.pixelsWide
- let rHeight = resultImageRep.pixelsHigh
- let rBitPerPixel = resultImageRep.bitsPerPixel / 8
- let rBytePerRow = resultImageRep.bytesPerRow
-
- let cWidth = checkImageRep.pixelsWide
- let cHeight = checkImageRep.pixelsHigh
- let cBitPerPixel = checkImageRep.bitsPerPixel / 8
- let cBytePerRow = checkImageRep.bytesPerRow
-
- let maxWidth = min(rWidth, cWidth) - 1
- let maxHeight = min(rHeight, cHeight) - 1
-
- // check background color
- // 挑选图片 对角斜线 上的相素进行识别
- var markInfo = NSMutableDictionary.init()
- for w in 0...maxWidth {
- let x = Int(w)
- for mark in 0...1 {
- let color = checkImageRep.colorAt(x: min(x, cWidth-1), y: min(mark == 0 ? x : (maxWidth - x), (cHeight-1))) as! NSColor
-
- let r = Int(color.redComponent*255)
- let g = Int(color.greenComponent*255)
- let b = Int(color.blueComponent*255)
-
- if (markInfo[color] != nil) {
- let count = (markInfo[color] as? NSNumber)!.intValue ?? 0
-
- markInfo[color] = NSNumber.init(value: count + 1)
- }else {
- markInfo[color] = NSNumber.init(value: 1)
- }
- }
- }
-
- var maxCount = Int(0);
- var bgColor : NSColor? = nil
- for color in markInfo.allKeys {
- let count = (markInfo[color] as? NSNumber)!.intValue ?? 0
-
- if count > maxCount {
- maxCount = count
- bgColor = color as! NSColor
- }
- }
-
- if nil != bgColor {
- NSLog(String("识别到背景色\(bgColor)"))
- }
-
- // Compare
- var equalCount = 0 as Double
- var bgCount = 0 as Double
- for w in 0...maxWidth {
- let x = Int(w)
-
- for h in 0...maxHeight {
- let y = Int(h)
-
- let cColor = checkImageRep.colorAt(x: x, y: y) as! NSColor
- let rColor = resultImageRep.colorAt(x: x, y: y) as! NSColor
-
- if (cColor.isEqual(to: rColor)) {
- equalCount = equalCount + 1
-
- if bgColor != nil &&
- cColor.isEqual(to: bgColor) {
- bgCount += 1
- }
- }
- }
- }
-
- NSLog(String("过滤点数目\(bgCount)"))
-
- return Double(max(equalCount-bgCount, 1)/(max(Double(cWidth) * Double(cHeight)-bgCount, 1)) * 100.0)
- }
-
- // 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 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 items {
- let subFileName = item as! String
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+"_\(DataModel.shared.latestReportID()!).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 items {
- let subFileName = item as! String
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+"_\(DataModel.shared.latestReportID()!).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 items {
- let subFileName = item as! String
- let rComparePath = NSString(string: resultDirectory).appendingPathComponent(subFileName+"_\(DataModel.shared.latestReportID()!).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)
- }
- }
- }
- }
-
-
-
- /// 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 nil != self.originFileDirectory() && 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 nil != self.resultFileDirectory() && 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)
-
- var 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)
- }
-
- var 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)
- }
- }
|