/*
* SquirrelID, a UUID library for Minecraft
* Copyright (C) sk89q <http://www.sk89q.com>
* Copyright (C) SquirrelID team and contributors
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser 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 Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.squirrelid.resolver;
import com.sk89q.squirrelid.Profile;
import com.sk89q.squirrelid.cache.HashMapCache;
import com.sk89q.squirrelid.cache.ProfileCache;
import com.sk89q.squirrelid.util.ExtraMatchers;
import org.hamcrest.Matchers;
import org.junit.Test;
import java.util.Arrays;
import java.util.UUID;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;
public class CacheForwardingServiceTest {
@Test
public void testFindAllByName() throws Exception {
ProfileCache cache = new HashMapCache();
CacheForwardingService resolver = new CacheForwardingService(HttpRepositoryService.forMinecraft(), cache);
UUID notchUuid = UUID.fromString("069a79f4-44e9-4726-a5be-fca90e38aaf5");
UUID jebUuid = UUID.fromString("853c80ef-3c37-49fd-aa49-938b674adae6");
Profile notchProfile = new Profile(notchUuid, "Notch");
Profile jebProfile = new Profile(jebUuid, "jeb_");
assertThat(
cache.getAllPresent(Arrays.asList(notchUuid, jebUuid)),
ExtraMatchers.<UUID, Profile>hasSize(0));
assertThat(
resolver.findAllByName(Arrays.asList("Notch", "jeb_")),
allOf(
Matchers.<Profile>hasSize(2),
containsInAnyOrder(notchProfile, jebProfile)));
assertThat(
cache.getAllPresent(Arrays.asList(notchUuid, jebUuid)),
allOf(
ExtraMatchers.<UUID, Profile>hasSize(2),
hasEntry(notchUuid, notchProfile),
hasEntry(jebUuid, jebProfile)));
assertThat(
cache.getIfPresent(UUID.randomUUID()),
equalTo(null));
}
}