forked from ngraves95/attacktimer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegrationTests.java
More file actions
211 lines (187 loc) · 7.78 KB
/
IntegrationTests.java
File metadata and controls
211 lines (187 loc) · 7.78 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package com.attacktimer;
/*
* Copyright (c) 2026, Lexer747 <https://github.com/Lexer747>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.fail;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import com.google.common.io.ByteArrayDataOutput;
import com.google.inject.Guice;
import com.google.inject.Inject;
import com.google.inject.testing.fieldbinder.Bind;
import com.google.inject.testing.fieldbinder.BoundFieldModule;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.Collections;
import java.util.EnumSet;
import net.runelite.api.Client;
import net.runelite.api.EnumComposition;
import net.runelite.api.EnumID;
import net.runelite.api.IndexedObjectSet;
import net.runelite.api.NPC;
import net.runelite.api.NPCComposition;
import net.runelite.api.Player;
import net.runelite.api.WorldView;
import net.runelite.api.coords.LocalPoint;
import net.runelite.api.coords.WorldPoint;
import net.runelite.api.events.GameTick;
import net.runelite.client.config.ConfigManager;
import net.runelite.client.game.ItemManager;
import net.runelite.client.game.NPCManager;
import net.runelite.client.ui.overlay.OverlayManager;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
@RunWith(MockitoJUnitRunner.class)
public class IntegrationTests
{
@Mock
@Bind
protected OverlayManager mockedOverlayManager;
@Mock
@Bind
protected ConfigManager mockedConfigManager;
@Mock
@Bind
protected AttackTimerMetronomeTileOverlay mockedOverlay;
@Mock
@Bind
protected AttackTimerBarOverlay mockedBarOverlay;
@Mock
@Bind
protected AttackTimerMetronomeConfig mockedConfig;
@Mock
@Bind
protected ItemManager mockedItemManager;
@Mock
@Bind
protected Client mockedClient;
@Mock
@Bind
protected NPCManager mockedNpcManager;
@Inject
protected AttackTimerMetronomePlugin underTest;
@Before
public void setup()
{
Guice.createInjector(BoundFieldModule.of(this)).injectMembers(this);
}
public Player pluginMockSetup() throws Exception
{
// enable the plugin
when(mockedConfig.enableMetronome()).thenReturn(true);
// Create player
Player mockedPlayer = mock(Player.class);
when(mockedPlayer.getAnimation()).thenReturn(NO_ANIMATION);
// Create the enemy
NPC mockedTarget = mock(NPC.class);
NPCComposition mockedCompositions = mock(NPCComposition.class);
when(mockedTarget.getComposition()).thenReturn(mockedCompositions);
int mockedNpcId = 0xFFFF;
when(mockedTarget.getId()).thenReturn(mockedNpcId);
String[] actions = {
"Attack", "Examine",
};
when(mockedCompositions.getActions()).thenReturn(actions);
when(mockedNpcManager.getHealth(mockedNpcId)).thenReturn(1);
// set the player as "attacking" the NPC
when(mockedClient.getLocalPlayer()).thenReturn(mockedPlayer);
when(mockedPlayer.getInteracting()).thenReturn(mockedTarget);
// need some extra mocks to stop the plugin running into an exception on the
// client APIs
// -- Mock World
WorldView mockedWorldView = mock(WorldView.class);
when(mockedClient.getTopLevelWorldView()).thenReturn(mockedWorldView);
when(mockedClient.getWorldView(0)).thenReturn(mockedWorldView);
int mockedPlane = 0;
when(mockedWorldView.getPlane()).thenReturn(mockedPlane);
WorldPoint worldPoint = new WorldPoint(0, 0, mockedPlane);
LocalPoint localPoint = new LocalPoint(0, 0, mockedPlane);
when(mockedPlayer.getWorldLocation()).thenReturn(worldPoint);
when(mockedPlayer.getLocalLocation()).thenReturn(localPoint);
// -- NPCs
IndexedObjectSet mockedNpcs = mock(IndexedObjectSet.class);
when(mockedNpcs.iterator()).thenReturn(Collections.emptyIterator());
when(mockedWorldView.npcs()).thenReturn(mockedNpcs);
// -- Attack Styles
EnumComposition mockedWeaponEnum = mock(EnumComposition.class);
when(mockedClient.getEnum(EnumID.WEAPON_STYLES)).thenReturn(mockedWeaponEnum);
when(mockedWeaponEnum.getIntValue(0)).thenReturn(-1); // blue-moon-spear mock
// Finally turn the plugin "on"
underTest.startUp();
return mockedPlayer;
}
protected void performStateVerificationOrUpdate(ByteArrayDataOutput channel, Path path) throws IOException
{
var actualBytes = channel.toByteArray();
switch (Update.system())
{
case NONE:
// We verify that the file on disk/repo are the same as the one generated
var expectedBytes = Files.readAllBytes(path);
assertArrayEquals(expectedBytes, actualBytes);
return;
case ALL:
// Write the generated one to disk
try (var file = Files.newByteChannel(path, EnumSet.of(StandardOpenOption.CREATE, StandardOpenOption.WRITE)))
{
file.write(ByteBuffer.wrap(actualBytes));
}
fail("Updated file: " + path);
return;
default:
fail("Unexpected Update enum");
}
}
protected void onGameTick(ByteArrayDataOutput file)
{
underTest.onGameTick(new GameTick());
underTest.writeState(file);
}
protected void writeTestMessage(String message, ByteArrayDataOutput file)
{
file.write(PREFIX);
file.write(message.getBytes(StandardCharsets.UTF_8));
file.write(SUFFIX);
}
protected static final int NO_ANIMATION = -1;
protected static final String TESTDATA = "src/test/java/com/attacktimer/testdata/";
private static final byte[] PREFIX = "[TEST MESSAGE] ".getBytes(StandardCharsets.UTF_8);
private static final byte[] SUFFIX = "\n".getBytes(StandardCharsets.UTF_8);
// This needs at least one public test to keep mockito happy but having real tests in this file would
// result in any future test which extends this test class also having to run and make that test pass.
//
// This does cause test inflation in that the summary will make it look like we have more tests than we
// really do, but I don't have a nicer way to not repeat all the injector boiler plate.
@Test
public void noTest()
{}
}