đŸ”¥ Remove unused method from identity loader
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / freenet / wot / IdentityLoaderTest.kt
1 /*
2  * Sone - IdentityLoaderTest.kt - Copyright Â© 2013–2020 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.freenet.wot
19
20 import net.pterodactylus.sone.test.createIdentity
21 import net.pterodactylus.sone.test.createOwnIdentity
22 import org.hamcrest.MatcherAssert.assertThat
23 import org.hamcrest.Matchers.equalTo
24 import org.junit.Test
25
26 /**
27  * Unit test for [IdentityLoader].
28  */
29 class IdentityLoaderTest {
30
31         @Test
32         fun `loading all identities merges remote identities’ trust values`() {
33                 val ownIdentity1 = createOwnIdentity("o1")
34                 val ownIdentity2 = createOwnIdentity("o2")
35                 val webOfTrustConnector = dummyWebOfTrustConnector
36                                 .overrideLoadAllOwnIdentities { setOf(ownIdentity1, ownIdentity2) }
37                                 .overrideLoadAllIdentities { ownIdentity, _ ->
38                                         when (ownIdentity) {
39                                                 ownIdentity1 -> setOf(createIdentity().setTrust(ownIdentity1, Trust(100, 50, 2)))
40                                                 else -> setOf(createIdentity().setTrust(ownIdentity2, Trust(80, 40, 2)))
41                                         }
42                                 }
43                 val identityLoader = IdentityLoader(webOfTrustConnector)
44                 val allIdentities = identityLoader.loadAllIdentities()
45                 assertThat(allIdentities[ownIdentity1]!!.first().trust[ownIdentity2], equalTo(Trust(80, 40, 2)))
46                 assertThat(allIdentities[ownIdentity2]!!.first().trust[ownIdentity1], equalTo(Trust(100, 50, 2)))
47         }
48
49 }