Change license to AGPL
This commit:
- Updates the `LICENSE` file
- Start every file with something like:
// Copyright YEAR_FIRST_PUBLISHED Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
---
First, I removed existing license headers with this Ruby 3.1.2 script:
require 'set'
EXTENSIONS_TO_CHECK = Set['.h', '.hpp', '.cpp', '.m', '.mm', '.pch', '.swift']
same = 0
different = 0
all_files = `git ls-files`.lines.map { |line| line.strip }
all_files.each do |relative_path|
if relative_path == 'Pods'
next
end
unless EXTENSIONS_TO_CHECK.include? File.extname(relative_path)
next
end
path = File.expand_path(relative_path)
contents = File.read(path)
new_contents = contents.sub(/\/\/\n\/\/ Copyright .*\n\/\/\n\n/, '')
if contents == new_contents
same += 1
else
different += 1
end
File.write(path, new_contents)
end
puts "updated #{different} file(s), left #{same} untouched"
I'm sure this script could be improved, but it worked well enough.
Then, I created `Scripts/lint/lint-license-headers` and ran it to auto-
fix a lot of files. This changed the mode of some files, but I think
that's actually desirable. For example,
`SignalServiceKit/src/Util/AppContext.m` previously had a mode of
`0755/-rwxr-xr-x`, and it's now `0644/-rw-r--r--`.
Then I fixed some stragglers and updated the precommit script.
See [a similar change in the Desktop app][0].
[0]: 8bfaf598af
168 lines
10 KiB
Swift
168 lines
10 KiB
Swift
//
|
|
// Copyright 2019 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import XCTest
|
|
import Foundation
|
|
import SignalCoreKit
|
|
@testable import SignalServiceKit
|
|
|
|
class StickerManagerTest: SSKBaseTestSwift {
|
|
|
|
func testFirstEmoji() {
|
|
XCTAssertNil(StickerManager.firstEmoji(inEmojiString: nil))
|
|
XCTAssertEqual("🇨🇦", StickerManager.firstEmoji(inEmojiString: "🇨🇦"))
|
|
XCTAssertEqual("🇨🇦", StickerManager.firstEmoji(inEmojiString: "🇨🇦🇨🇦"))
|
|
XCTAssertEqual("🇹🇹", StickerManager.firstEmoji(inEmojiString: "🇹🇹🌼🇹🇹🌼🇹🇹"))
|
|
XCTAssertEqual("🌼", StickerManager.firstEmoji(inEmojiString: "🌼🇹🇹🌼🇹🇹"))
|
|
XCTAssertEqual("👌🏽", StickerManager.firstEmoji(inEmojiString: "👌🏽👌🏾"))
|
|
XCTAssertEqual("👌🏾", StickerManager.firstEmoji(inEmojiString: "👌🏾👌🏽"))
|
|
XCTAssertEqual("👾", StickerManager.firstEmoji(inEmojiString: "👾🙇💁🙅🙆🙋🙎🙍"))
|
|
XCTAssertEqual("👾", StickerManager.firstEmoji(inEmojiString: "👾🙇💁🙅🙆🙋🙎🙍"))
|
|
}
|
|
|
|
func testAllEmoji() {
|
|
XCTAssertEqual([], StickerManager.allEmoji(inEmojiString: nil))
|
|
XCTAssertEqual(["🇨🇦"], StickerManager.allEmoji(inEmojiString: "🇨🇦"))
|
|
XCTAssertEqual(["🇨🇦", "🇨🇦"], StickerManager.allEmoji(inEmojiString: "🇨🇦🇨🇦"))
|
|
XCTAssertEqual(["🇹🇹", "🌼", "🇹🇹", "🌼", "🇹🇹"], StickerManager.allEmoji(inEmojiString: "🇹🇹🌼🇹🇹🌼🇹🇹"))
|
|
XCTAssertEqual(["🌼", "🇹🇹", "🌼", "🇹🇹"], StickerManager.allEmoji(inEmojiString: "🌼🇹🇹🌼🇹🇹"))
|
|
XCTAssertEqual(["👌🏽", "👌🏾"], StickerManager.allEmoji(inEmojiString: "👌🏽👌🏾"))
|
|
XCTAssertEqual(["👌🏾", "👌🏽"], StickerManager.allEmoji(inEmojiString: "👌🏾👌🏽"))
|
|
XCTAssertEqual(["👾", "🙇", "💁", "🙅", "🙆", "🙋", "🙎", "🙍"], StickerManager.allEmoji(inEmojiString: "👾🙇💁🙅🙆🙋🙎🙍"))
|
|
|
|
XCTAssertEqual(["🇨🇦"], StickerManager.allEmoji(inEmojiString: "a🇨🇦a"))
|
|
XCTAssertEqual(["🇨🇦", "🇹🇹"], StickerManager.allEmoji(inEmojiString: "a🇨🇦b🇹🇹c"))
|
|
}
|
|
|
|
func testSuggestedStickers_uncached() {
|
|
// The "StickerManager.suggestedStickers" instance method does caching;
|
|
// the class method does not.
|
|
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "Hey Bob, what's up?").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🇨🇦").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🇨🇦🇹🇹").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "This is a flag: 🇨🇦").count)
|
|
|
|
let stickerInfo = StickerInfo.defaultValue
|
|
let stickerData = Randomness.generateRandomBytes(1)
|
|
let temporaryFile = OWSFileSystem.temporaryFileUrl()
|
|
try! stickerData.write(to: temporaryFile)
|
|
|
|
let success = StickerManager.installSticker(stickerInfo: stickerInfo,
|
|
stickerUrl: temporaryFile,
|
|
contentType: OWSMimeTypeImageWebp,
|
|
emojiString: "🌼🇨🇦")
|
|
XCTAssertTrue(success)
|
|
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "Hey Bob, what's up?").count)
|
|
// The sticker should only be suggested if user enters a single emoji
|
|
// (and nothing else) that is associated with the sticker.
|
|
XCTAssertEqual(1, StickerManager.suggestedStickers(forTextInput: "🇨🇦").count)
|
|
XCTAssertEqual(1, StickerManager.suggestedStickers(forTextInput: "🌼").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🇹🇹").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "a🇨🇦").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🇨🇦a").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🇨🇦🇹🇹").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🌼🇨🇦").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "This is a flag: 🇨🇦").count)
|
|
|
|
databaseStorage.write { (transaction) in
|
|
// Don't bother calling completion.
|
|
StickerManager.uninstallSticker(stickerInfo: stickerInfo,
|
|
transaction: transaction)
|
|
}
|
|
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "Hey Bob, what's up?").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🇨🇦").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "🇨🇦🇹🇹").count)
|
|
XCTAssertEqual(0, StickerManager.suggestedStickers(forTextInput: "This is a flag: 🇨🇦").count)
|
|
}
|
|
|
|
func testSuggestedStickers_cached() {
|
|
// The "StickerManager.suggestedStickers" instance method does caching;
|
|
// the class method does not.
|
|
let stickerManager = StickerManager.shared
|
|
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "Hey Bob, what's up?").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🇨🇦").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🇨🇦🇹🇹").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "This is a flag: 🇨🇦").count)
|
|
|
|
let stickerInfo = StickerInfo.defaultValue
|
|
let stickerData = Randomness.generateRandomBytes(1)
|
|
let temporaryFile = OWSFileSystem.temporaryFileUrl()
|
|
try! stickerData.write(to: temporaryFile)
|
|
|
|
let success = StickerManager.installSticker(stickerInfo: stickerInfo,
|
|
stickerUrl: temporaryFile,
|
|
contentType: OWSMimeTypeImageWebp,
|
|
emojiString: "🌼🇨🇦")
|
|
XCTAssertTrue(success)
|
|
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "Hey Bob, what's up?").count)
|
|
// The sticker should only be suggested if user enters a single emoji
|
|
// (and nothing else) that is associated with the sticker.
|
|
XCTAssertEqual(1, stickerManager.suggestedStickers(forTextInput: "🇨🇦").count)
|
|
XCTAssertEqual(1, stickerManager.suggestedStickers(forTextInput: "🌼").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🇹🇹").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "a🇨🇦").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🇨🇦a").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🇨🇦🇹🇹").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🌼🇨🇦").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "This is a flag: 🇨🇦").count)
|
|
|
|
databaseStorage.write { (transaction) in
|
|
// Don't bother calling completion.
|
|
StickerManager.uninstallSticker(stickerInfo: stickerInfo,
|
|
transaction: transaction)
|
|
}
|
|
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "Hey Bob, what's up?").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🇨🇦").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "🇨🇦🇹🇹").count)
|
|
XCTAssertEqual(0, stickerManager.suggestedStickers(forTextInput: "This is a flag: 🇨🇦").count)
|
|
}
|
|
|
|
func testInfos() {
|
|
let packId = Randomness.generateRandomBytes(16)
|
|
let packKey = Randomness.generateRandomBytes(Int32(StickerManager.packKeyLength))
|
|
let stickerId: UInt32 = 0
|
|
|
|
XCTAssertEqual(StickerPackInfo(packId: packId, packKey: packKey),
|
|
StickerPackInfo(packId: packId, packKey: packKey))
|
|
XCTAssertTrue(StickerPackInfo(packId: packId, packKey: packKey) == StickerPackInfo(packId: packId, packKey: packKey))
|
|
|
|
XCTAssertEqual(StickerInfo(packId: packId, packKey: packKey, stickerId: stickerId),
|
|
StickerInfo(packId: packId, packKey: packKey, stickerId: stickerId))
|
|
XCTAssertTrue(StickerInfo(packId: packId, packKey: packKey, stickerId: stickerId) == StickerInfo(packId: packId, packKey: packKey, stickerId: stickerId))
|
|
}
|
|
|
|
func testDecryption() {
|
|
// From the Zozo the French Bulldog sticker pack
|
|
let packKey = Data([
|
|
0x17, 0xe9, 0x71, 0xc1, 0x34, 0x03, 0x56, 0x22,
|
|
0x78, 0x1d, 0x2e, 0xe2, 0x49, 0xe6, 0x47, 0x3b,
|
|
0x77, 0x45, 0x83, 0x75, 0x0b, 0x68, 0xc1, 0x1b,
|
|
0xb8, 0x2b, 0x75, 0x09, 0xc6, 0x8b, 0x6d, 0xfd
|
|
])
|
|
|
|
let bundle = Bundle(for: StickerManagerTest.self)
|
|
let encryptedStickerURL = bundle.url(forResource: "sample-sticker", withExtension: "encrypted")!
|
|
|
|
let decryptedStickerURL = bundle.url(forResource: "sample-sticker", withExtension: "webp")!
|
|
let decryptedStickerData = try! Data(contentsOf: decryptedStickerURL)
|
|
|
|
let outputUrl = try! StickerManager.decrypt(at: encryptedStickerURL, packKey: packKey)
|
|
let outputData = try! Data(contentsOf: outputUrl)
|
|
XCTAssertEqual(outputData, decryptedStickerData)
|
|
}
|
|
}
|