🔀 Merge next
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / freenet / wot / Identities.kt
diff --git a/src/test/kotlin/net/pterodactylus/sone/freenet/wot/Identities.kt b/src/test/kotlin/net/pterodactylus/sone/freenet/wot/Identities.kt
new file mode 100644 (file)
index 0000000..9d74b65
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * Sone - Identities.java - Copyright Â© 2013–2019 David Roden
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.freenet.wot
+
+fun createOwnIdentity(id: String, contexts: Set<String>, vararg properties: Pair<String, String>): OwnIdentity {
+       val ownIdentity = DefaultOwnIdentity(id, "Nickname$id", "Request$id", "Insert$id")
+       setContextsAndPropertiesOnIdentity(ownIdentity, contexts, mapOf(*properties))
+       return ownIdentity
+}
+
+fun createIdentity(id: String, contexts: Set<String>, vararg properties: Pair<String, String>): Identity {
+       val identity = DefaultIdentity(id, "Nickname$id", "Request$id")
+       setContextsAndPropertiesOnIdentity(identity, contexts, mapOf(*properties))
+       return identity
+}
+
+private fun setContextsAndPropertiesOnIdentity(identity: Identity, contexts: Set<String>, properties: Map<String, String>) {
+       identity.contexts = contexts
+       identity.properties = properties
+}