How to use findPluginDescription method of be.seeseemelk.mockbukkit.plugin.PluginManagerMock class

Best MockBukkit code snippet using be.seeseemelk.mockbukkit.plugin.PluginManagerMock.findPluginDescription

Source:PluginManagerMock.java Github

copy

Full Screen

...346 public JavaPlugin loadPlugin(Class<? extends JavaPlugin> class1, Object[] parameters)347 {348 try349 {350 PluginDescriptionFile description = findPluginDescription(class1);351 return loadPlugin(class1, description, parameters);352 }353 catch (IOException | InvalidDescriptionException e)354 {355 throw new RuntimeException(e);356 }357 }358 359 /**360 * Tries to find the correct plugin.yml for a given plugin.361 * It does this by opening each plugin.yml that it finds and362 * comparing the 'main' property to the qualified name of the363 * plugin class.364 * @param class1 The class that is in a subpackage of where to get the file.365 * @return The plugin description file.366 * @throws IOException Thrown when the file wan't be found or loaded.367 * @throws InvalidDescriptionException If the plugin description file is formatted incorrectly.368 */369 private PluginDescriptionFile findPluginDescription(Class<? extends JavaPlugin> class1) throws IOException, InvalidDescriptionException370 {371 Enumeration<URL> resources = class1.getClassLoader().getResources("plugin.yml");372 while (resources.hasMoreElements())373 {374 URL url = resources.nextElement();375 PluginDescriptionFile description = new PluginDescriptionFile(url.openStream());376 String mainClass = description.getMain();377 if (class1.getName().equals(mainClass))378 return description;379 }380 throw new FileNotFoundException(String.format("Could not find file plugin.yml. Maybe forgot to add the 'main' property?"));381 }382 383 @Override...

Full Screen

Full Screen

findPluginDescription

Using AI Code Generation

copy

Full Screen

1import be.seeseemelk.mockbukkit.MockBukkit;2import be.seeseemelk.mockbukkit.ServerMock;3import be.seeseemelk.mockbukkit.plugin.PluginManagerMock;4import org.bukkit.plugin.PluginDescriptionFile;5import org.junit.jupiter.api.AfterAll;6import org.junit.jupiter.api.BeforeAll;7import org.junit.jupiter.api.Test;8import java.io.File;9import java.io.IOException;10import java.util.logging.Logger;11import static org.junit.jupiter.api.Assertions.assertEquals;12import static org.junit.jupiter.api.Assertions.assertNotNull;13{14 private static ServerMock server;15 private static PluginManagerMock pluginManager;16 public static void setUp()17 {18 server = MockBukkit.mock();19 pluginManager = server.getPluginManager();20 }21 public static void tearDown()22 {23 MockBukkit.unmock();24 }25 public void testFindPluginDescription() throws IOException26 {27 File pluginDir = new File("src/test/resources/plugins/testplugin");28 PluginDescriptionFile description = pluginManager.findPluginDescription(pluginDir);29 assertNotNull(description);30 assertEquals("testplugin", description.getName());31 assertEquals("1.0-SNAPSHOT", description.getVersion());32 }33}

Full Screen

Full Screen

findPluginDescription

Using AI Code Generation

copy

Full Screen

1public void testFindPluginDescription() 2{3 PluginManagerMock pluginManagerMock = MockBukkit.getMock().getPluginManager();4 PluginDescriptionFile pluginDescriptionFile = pluginManagerMock.findPluginDescription("plugin.yml");5}6public void testFindPluginDescription() 7{8 PluginManagerMock pluginManagerMock = MockBukkit.getMock().getPluginManager();9 PluginDescriptionFile pluginDescriptionFile = pluginManagerMock.findPluginDescription("plugin.yml");10}11MockBukkit.getMock().getPluginManager().findPluginDescription("plugin.yml");12MockBukkit.getMock().getPluginManager().findPluginDescription("src/main/resources/plugin.yml");13MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/resources/plugin.yml");14MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/plugin.yml");15MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/resources/plugin.yml");16MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/main/resources/plugin.yml");17MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/test/resources/plugin.yml");18MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/test/main/resources/plugin.yml");19MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/test/java/resources/plugin.yml");20MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/test/java/main/resources/plugin.yml");21MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/test/java/test/resources/plugin.yml");22MockBukkit.getMock().getPluginManager().findPluginDescription("src/test/java/test/java/test/main/resources/plugin.yml");

Full Screen

Full Screen

findPluginDescription

Using AI Code Generation

copy

Full Screen

1public PluginDescriptionFile findPluginDescription(String name) {2 File[] files = new File("plugins").listFiles();3 if (files != null) {4 for (File file : files) {5 if (file.getName().endsWith(".jar")) {6 try {7 JarFile jar = new JarFile(file);8 Manifest manifest = jar.getManifest();9 if (manifest != null) {10 Attributes attributes = manifest.getMainAttributes();11 if (attributes != null) {12 String pluginName = attributes.getValue("name");13 if (pluginName != null && pluginName.equals(name)) {14 return new PluginDescriptionFile(jar.getManifest());15 }16 }17 }18 } catch (IOException e) {19 e.printStackTrace();20 }21 }22 }23 }24 return null;25}26public PluginDescriptionFile findPluginDescription(String name) {27 File[] files = new File("plugins").listFiles();28 if (files != null) {29 for (File file : files) {30 if (file.getName().endsWith(".jar")) {31 try {32 JarFile jar = new JarFile(file);33 Manifest manifest = jar.getManifest();34 if (manifest != null) {35 Attributes attributes = manifest.getMainAttributes();36 if (attributes != null) {37 String pluginName = attributes.getValue("name");38 if (pluginName != null && pluginName.equals(name)) {39 return new PluginDescriptionFile(jar.getManifest());40 }41 }42 }43 } catch (IOException e) {44 e.printStackTrace();45 }46 }47 }48 }49 return null;50}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful