summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/bukkit/AchievementTest.java
blob: 3492821c5f79e0466ec8e0c18302e3ad35588563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package org.bukkit;

import static org.hamcrest.Matchers.hasSize;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertThat;

import java.util.List;

import net.minecraft.server.Statistic;
import net.minecraft.server.StatisticList;

import org.bukkit.support.Util;
import org.junit.Test;

import com.google.common.collect.Lists;

public class AchievementTest {
    @Test
    @SuppressWarnings("unchecked")
    public void verifyMapping() throws IllegalArgumentException, SecurityException, IllegalAccessException, NoSuchFieldException {
        List<Achievement> achievements = Lists.newArrayList(Achievement.values());

        for (Statistic statistic : (List<Statistic>) StatisticList.b) {
            int id = statistic.e;
            String hash = statistic.g;

            if ((id & Achievement.STATISTIC_OFFSET) != Achievement.STATISTIC_OFFSET) continue;
            if (hash == null) continue;

            String name = Util.getInternalState(Statistic.class, statistic, "a");
            String message = String.format("org.bukkit.Achievement is missing id: %d named: '%s'", id - Achievement.STATISTIC_OFFSET, name);

            Achievement subject = Achievement.getById(id);
            assertNotNull(message, subject);

            achievements.remove(subject);
        }

        assertThat("org.bukkit.Achievement has too many achievements", achievements, hasSize(0));
    }
}