summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/bukkit/potion/PotionTest.java
blob: a9df7d1996505b7df34b4612bd3c87045d94f72d (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
42
43
44
45
package org.bukkit.potion;

import static org.junit.Assert.*;
import static org.hamcrest.Matchers.*;

import java.util.EnumMap;
import java.util.Map;

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

public class PotionTest extends AbstractTestingBase {

    @Test
    public void getEffects() {
        for (PotionType type : PotionType.values()) {
            for (PotionEffect effect : new Potion(type).getEffects()) {
                PotionEffectType potionType = effect.getType();
                assertThat(effect.getType(), is(sameInstance(PotionEffectType.getById(potionType.getId()))));

                assertNotNull(potionType.getName(), PotionType.getByEffect(potionType));
            }
        }
    }

    @Test
    public void testEffectCompleteness() throws Throwable {
        Map<Integer, ?> effectDurations = Util.getInternalState(net.minecraft.server.PotionBrewer.class, null, "effectDurations");

        Map<PotionType, String> effects = new EnumMap(PotionType.class);
        for (int id : effectDurations.keySet()) {
            PotionEffectType type = PotionEffectType.getById(id);
            assertNotNull(String.valueOf(id), PotionEffectType.getById(id));

            PotionType enumType = PotionType.getByEffect(type);
            assertNotNull(type.getName(), enumType);

            assertThat(enumType.name(), effects.put(enumType, enumType.name()), is(nullValue()));
        }

        assertThat(effects.entrySet(), hasSize(effectDurations.size()));
        assertThat(effectDurations.entrySet(), hasSize(PotionType.values().length - /* WATER */ 1));
    }
}