Moved Pinboard to kotlin and added tests.
This commit is contained in:
parent
d6a85ef4af
commit
b729eb2729
10 changed files with 254 additions and 182 deletions
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
<SmellBaseline>
|
<SmellBaseline>
|
||||||
<Blacklist></Blacklist>
|
<ManuallySuppressedIssues></ManuallySuppressedIssues>
|
||||||
<Whitelist>
|
<CurrentIssues>
|
||||||
<ID>LongParameterList:Comment.kt$Comment$( bot: Mobibot, cmd: String, sender: String, isOp: Boolean, entry: EntryLink, index: Int, commentIndex: Int )</ID>
|
<ID>LongParameterList:Comment.kt$Comment$( bot: Mobibot, cmd: String, sender: String, isOp: Boolean, entry: EntryLink, index: Int, commentIndex: Int )</ID>
|
||||||
<ID>LongParameterList:Comment.kt$Comment$( bot: Mobibot, sender: String, isOp: Boolean, entry: EntryLink, index: Int, commentIndex: Int )</ID>
|
<ID>LongParameterList:Comment.kt$Comment$( bot: Mobibot, sender: String, isOp: Boolean, entry: EntryLink, index: Int, commentIndex: Int )</ID>
|
||||||
<ID>LongParameterList:Comment.kt$Comment$(bot: Mobibot, cmd: String, sender: String, entry: EntryLink, index: Int, commentIndex: Int)</ID>
|
<ID>LongParameterList:Comment.kt$Comment$(bot: Mobibot, cmd: String, sender: String, entry: EntryLink, index: Int, commentIndex: Int)</ID>
|
||||||
|
@ -12,8 +12,8 @@
|
||||||
<ID>MagicNumber:Recap.kt$Recap.Companion$10</ID>
|
<ID>MagicNumber:Recap.kt$Recap.Companion$10</ID>
|
||||||
<ID>MagicNumber:Users.kt$Users$8</ID>
|
<ID>MagicNumber:Users.kt$Users$8</ID>
|
||||||
<ID>MagicNumber:View.kt$View$8</ID>
|
<ID>MagicNumber:View.kt$View$8</ID>
|
||||||
<ID>NestedBlockDepth:Addons.kt$Addons$add</ID>
|
<ID>NestedBlockDepth:Addons.kt$Addons$ fun add(command: AbstractCommand, props: Properties)</ID>
|
||||||
<ID>NestedBlockDepth:Comment.kt$Comment$commandResponse</ID>
|
<ID>NestedBlockDepth:Comment.kt$Comment$override fun commandResponse( sender: String, login: String, args: String, isOp: Boolean, isPrivate: Boolean )</ID>
|
||||||
<ID>NestedBlockDepth:LinksMgr.kt$LinksMgr$commandResponse</ID>
|
<ID>NestedBlockDepth:LinksMgr.kt$LinksMgr$override fun commandResponse( sender: String, login: String, args: String, isOp: Boolean, isPrivate: Boolean )</ID>
|
||||||
</Whitelist>
|
</CurrentIssues>
|
||||||
</SmellBaseline>
|
</SmellBaseline>
|
||||||
|
|
|
@ -70,6 +70,7 @@ import net.thauvin.erik.mobibot.modules.War;
|
||||||
import net.thauvin.erik.mobibot.modules.Weather2;
|
import net.thauvin.erik.mobibot.modules.Weather2;
|
||||||
import net.thauvin.erik.mobibot.modules.WorldTime;
|
import net.thauvin.erik.mobibot.modules.WorldTime;
|
||||||
import net.thauvin.erik.mobibot.msg.Message;
|
import net.thauvin.erik.mobibot.msg.Message;
|
||||||
|
import net.thauvin.erik.pinboard.PinboardPoster;
|
||||||
import net.thauvin.erik.semver.Version;
|
import net.thauvin.erik.semver.Version;
|
||||||
import org.apache.commons.cli.CommandLine;
|
import org.apache.commons.cli.CommandLine;
|
||||||
import org.apache.commons.cli.CommandLineParser;
|
import org.apache.commons.cli.CommandLineParser;
|
||||||
|
@ -96,6 +97,7 @@ import java.nio.file.Paths;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.Timer;
|
import java.util.Timer;
|
||||||
|
import java.util.logging.ConsoleHandler;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
import static org.apache.commons.lang3.StringUtils.isNotBlank;
|
import static org.apache.commons.lang3.StringUtils.isNotBlank;
|
||||||
|
@ -154,7 +156,7 @@ public class Mobibot extends PircBot {
|
||||||
// NickServ ident password
|
// NickServ ident password
|
||||||
private String identPwd = "";
|
private String identPwd = "";
|
||||||
// Pinboard posts handler
|
// Pinboard posts handler
|
||||||
private Pinboard pinboard;
|
private PinboardPoster pinboard;
|
||||||
// Weblog URL
|
// Weblog URL
|
||||||
private String weblogUrl = "";
|
private String weblogUrl = "";
|
||||||
|
|
||||||
|
@ -383,7 +385,7 @@ public class Mobibot extends PircBot {
|
||||||
*/
|
*/
|
||||||
public final void addPin(final EntryLink entry) {
|
public final void addPin(final EntryLink entry) {
|
||||||
if (pinboard != null) {
|
if (pinboard != null) {
|
||||||
pinboard.addPost(entry);
|
PinboardUtils.addPin(pinboard, ircServer, entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -423,7 +425,7 @@ public class Mobibot extends PircBot {
|
||||||
*/
|
*/
|
||||||
public final void deletePin(final int index, final EntryLink entry) {
|
public final void deletePin(final int index, final EntryLink entry) {
|
||||||
if (pinboard != null) {
|
if (pinboard != null) {
|
||||||
pinboard.deletePost(entry);
|
PinboardUtils.deletePin(pinboard, entry);
|
||||||
}
|
}
|
||||||
if (twitter.isAutoPost()) {
|
if (twitter.isAutoPost()) {
|
||||||
twitter.removeEntry(index);
|
twitter.removeEntry(index);
|
||||||
|
@ -914,7 +916,13 @@ public class Mobibot extends PircBot {
|
||||||
*/
|
*/
|
||||||
final void setPinboardAuth(final String apiToken) {
|
final void setPinboardAuth(final String apiToken) {
|
||||||
if (isNotBlank(apiToken)) {
|
if (isNotBlank(apiToken)) {
|
||||||
pinboard = new Pinboard(this, apiToken);
|
pinboard = new PinboardPoster(apiToken);
|
||||||
|
if (LOGGER.isDebugEnabled()) {
|
||||||
|
final ConsoleHandler consoleHandler = new ConsoleHandler();
|
||||||
|
consoleHandler.setLevel(java.util.logging.Level.FINE);
|
||||||
|
pinboard.getLogger().addHandler(consoleHandler);
|
||||||
|
pinboard.getLogger().setLevel(java.util.logging.Level.FINE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -948,7 +956,7 @@ public class Mobibot extends PircBot {
|
||||||
*/
|
*/
|
||||||
public final void updatePin(final String oldUrl, final EntryLink entry) {
|
public final void updatePin(final String oldUrl, final EntryLink entry) {
|
||||||
if (pinboard != null) {
|
if (pinboard != null) {
|
||||||
pinboard.updatePost(oldUrl, entry);
|
PinboardUtils.updatePin(pinboard, ircServer, oldUrl, entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,167 +0,0 @@
|
||||||
/*
|
|
||||||
* Pinboard.java
|
|
||||||
*
|
|
||||||
* Copyright (c) 2004-2019, Erik C. Thauvin (erik@thauvin.net)
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions are met:
|
|
||||||
*
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this
|
|
||||||
* list of conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* Neither the name of this project nor the names of its contributors may be
|
|
||||||
* used to endorse or promote products derived from this software without
|
|
||||||
* specific prior written permission.
|
|
||||||
*
|
|
||||||
* 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 HOLDER 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package net.thauvin.erik.mobibot;
|
|
||||||
|
|
||||||
import net.thauvin.erik.mobibot.entries.EntryLink;
|
|
||||||
import net.thauvin.erik.pinboard.PinboardPoster;
|
|
||||||
|
|
||||||
import javax.swing.SwingWorker;
|
|
||||||
import java.time.ZoneId;
|
|
||||||
import java.time.ZonedDateTime;
|
|
||||||
import java.time.format.DateTimeFormatter;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.logging.ConsoleHandler;
|
|
||||||
import java.util.logging.Level;
|
|
||||||
import java.util.logging.Logger;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The class to handle posts to pinboard.in.
|
|
||||||
*
|
|
||||||
* @author <a href="https://erik.thauvin.net" target="_blank">Erik C. Thauvin</a>
|
|
||||||
* @created 2017-05-17
|
|
||||||
* @since 1.0
|
|
||||||
*/
|
|
||||||
class Pinboard {
|
|
||||||
private final String ircServer;
|
|
||||||
private final PinboardPoster pinboard;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new {@link Pinboard} instance.
|
|
||||||
*
|
|
||||||
* @param bot The bot's instance.
|
|
||||||
* @param apiToken The API end point.
|
|
||||||
*/
|
|
||||||
Pinboard(final Mobibot bot, final String apiToken) {
|
|
||||||
pinboard = new PinboardPoster(apiToken);
|
|
||||||
ircServer = bot.getIrcServer();
|
|
||||||
|
|
||||||
if (bot.getLogger().isDebugEnabled()) {
|
|
||||||
final ConsoleHandler consoleHandler = new ConsoleHandler();
|
|
||||||
consoleHandler.setLevel(Level.FINE);
|
|
||||||
final Logger logger = pinboard.getLogger();
|
|
||||||
logger.addHandler(consoleHandler);
|
|
||||||
logger.setLevel(Level.FINE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a post to pinboard.in.
|
|
||||||
*
|
|
||||||
* @param entry The entry to add.
|
|
||||||
*/
|
|
||||||
final void addPost(final EntryLink entry) {
|
|
||||||
final SwingWorker<Boolean, Void> worker = new SwingWorker<>() {
|
|
||||||
@Override
|
|
||||||
protected Boolean doInBackground() {
|
|
||||||
return pinboard.addPin(entry.getLink(),
|
|
||||||
entry.getTitle(),
|
|
||||||
postedBy(entry),
|
|
||||||
entry.getPinboardTags(),
|
|
||||||
formatDate(entry.getDate()));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
worker.execute();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Deletes a post to pinboard.in.
|
|
||||||
*
|
|
||||||
* @param entry The entry to delete.
|
|
||||||
*/
|
|
||||||
final void deletePost(final EntryLink entry) {
|
|
||||||
final String link = entry.getLink();
|
|
||||||
|
|
||||||
final SwingWorker<Boolean, Void> worker = new SwingWorker<>() {
|
|
||||||
@Override
|
|
||||||
protected Boolean doInBackground() {
|
|
||||||
return pinboard.deletePin(link);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
worker.execute();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Format a date to a UTC timestamp.
|
|
||||||
*
|
|
||||||
* @param date The date.
|
|
||||||
* @return The date in {@link DateTimeFormatter#ISO_INSTANT} format.
|
|
||||||
*/
|
|
||||||
private String formatDate(final Date date) {
|
|
||||||
return ZonedDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault()).format(DateTimeFormatter.ISO_INSTANT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns he pinboard.in extended attribution line.
|
|
||||||
*
|
|
||||||
* @param entry The entry.
|
|
||||||
* @return The extended attribution line.
|
|
||||||
*/
|
|
||||||
private String postedBy(final EntryLink entry) {
|
|
||||||
return "Posted by " + entry.getNick() + " on " + entry.getChannel() + " (" + ircServer + ')';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates a post to pinboard.in.
|
|
||||||
*
|
|
||||||
* @param oldUrl The old post URL.
|
|
||||||
* @param entry The entry to add.
|
|
||||||
*/
|
|
||||||
final void updatePost(final String oldUrl, final EntryLink entry) {
|
|
||||||
final SwingWorker<Boolean, Void> worker = new SwingWorker<>() {
|
|
||||||
@Override
|
|
||||||
protected Boolean doInBackground() {
|
|
||||||
if (!oldUrl.equals(entry.getLink())) {
|
|
||||||
pinboard.deletePin(oldUrl);
|
|
||||||
|
|
||||||
return pinboard.addPin(entry.getLink(),
|
|
||||||
entry.getTitle(),
|
|
||||||
postedBy(entry),
|
|
||||||
entry.getPinboardTags(),
|
|
||||||
formatDate(entry.getDate()));
|
|
||||||
} else {
|
|
||||||
return pinboard.addPin(entry.getLink(),
|
|
||||||
entry.getTitle(),
|
|
||||||
postedBy(entry),
|
|
||||||
entry.getPinboardTags(),
|
|
||||||
formatDate(entry.getDate()),
|
|
||||||
true,
|
|
||||||
true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
worker.execute();
|
|
||||||
}
|
|
||||||
}
|
|
141
src/main/java/net/thauvin/erik/mobibot/PinboardUtils.kt
Normal file
141
src/main/java/net/thauvin/erik/mobibot/PinboardUtils.kt
Normal file
|
@ -0,0 +1,141 @@
|
||||||
|
/*
|
||||||
|
* Pinboard.java
|
||||||
|
*
|
||||||
|
* Copyright (c) 2004-2019, Erik C. Thauvin (erik@thauvin.net)
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* Redistributions of source code must retain the above copyright notice, this
|
||||||
|
* list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* Neither the name of this project nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package net.thauvin.erik.mobibot
|
||||||
|
|
||||||
|
import kotlinx.coroutines.GlobalScope
|
||||||
|
import kotlinx.coroutines.async
|
||||||
|
import kotlinx.coroutines.runBlocking
|
||||||
|
import net.thauvin.erik.mobibot.entries.EntryLink
|
||||||
|
import net.thauvin.erik.pinboard.PinboardPoster
|
||||||
|
import java.time.ZoneId
|
||||||
|
import java.time.ZonedDateTime
|
||||||
|
import java.time.format.DateTimeFormatter
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The class to handle posts to pinboard.in.
|
||||||
|
*
|
||||||
|
* @author [Erik C. Thauvin](https://erik.thauvin.net)
|
||||||
|
* @created 2017-05-17
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
object PinboardUtils {
|
||||||
|
/**
|
||||||
|
* Adds a pin.
|
||||||
|
*
|
||||||
|
* @param poster The PinboardPoster instance.
|
||||||
|
* @param entry The entry to add.
|
||||||
|
*/
|
||||||
|
@JvmStatic
|
||||||
|
fun addPin(poster: PinboardPoster, ircServer: String, entry: EntryLink) = runBlocking {
|
||||||
|
val add = GlobalScope.async {
|
||||||
|
poster.addPin(
|
||||||
|
entry.link,
|
||||||
|
entry.title,
|
||||||
|
postedBy(entry, ircServer),
|
||||||
|
entry.pinboardTags,
|
||||||
|
formatDate(entry.date)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
add.await()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deletes a pin.
|
||||||
|
*
|
||||||
|
* @param poster The PinboardPoster instance.
|
||||||
|
* @param entry The entry to delete.
|
||||||
|
*/
|
||||||
|
@JvmStatic
|
||||||
|
fun deletePin(poster: PinboardPoster, entry: EntryLink) = runBlocking {
|
||||||
|
val delete = GlobalScope.async {
|
||||||
|
poster.deletePin(entry.link)
|
||||||
|
}
|
||||||
|
delete.await()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Updates a pin.
|
||||||
|
*
|
||||||
|
* @param poster The PinboardPoster instance.
|
||||||
|
* @param oldUrl The old post URL.
|
||||||
|
* @param entry The entry to add.
|
||||||
|
*/
|
||||||
|
@JvmStatic
|
||||||
|
fun updatePin(poster: PinboardPoster, ircServer: String, oldUrl: String, entry: EntryLink) = runBlocking {
|
||||||
|
val update = GlobalScope.async {
|
||||||
|
if (oldUrl != entry.link) {
|
||||||
|
poster.deletePin(oldUrl)
|
||||||
|
poster.addPin(
|
||||||
|
entry.link,
|
||||||
|
entry.title,
|
||||||
|
postedBy(entry, ircServer),
|
||||||
|
entry.pinboardTags,
|
||||||
|
formatDate(entry.date)
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
poster.addPin(
|
||||||
|
entry.link,
|
||||||
|
entry.title,
|
||||||
|
postedBy(entry, ircServer),
|
||||||
|
entry.pinboardTags,
|
||||||
|
formatDate(entry.date),
|
||||||
|
replace = true,
|
||||||
|
shared = true
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
update.await()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format a date to a UTC timestamp.
|
||||||
|
*
|
||||||
|
* @param date The date.
|
||||||
|
* @return The date in [DateTimeFormatter.ISO_INSTANT] format.
|
||||||
|
*/
|
||||||
|
private fun formatDate(date: Date): String {
|
||||||
|
return ZonedDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault()).format(DateTimeFormatter.ISO_INSTANT)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns he pinboard.in extended attribution line.
|
||||||
|
*
|
||||||
|
* @param entry The entry.
|
||||||
|
* @return The extended attribution line.
|
||||||
|
*/
|
||||||
|
private fun postedBy(entry: EntryLink, ircServer: String): String {
|
||||||
|
return "Posted by ${entry.nick} on ${entry.channel} ( $ircServer )"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* LocalProperties.java
|
* LocalProperties.java
|
||||||
*
|
*
|
||||||
* Copyright (c) 2004-2019, Erik C. Thauvin (erik@thauvin.net)
|
* Copyright (c) 2004-2020, Erik C. Thauvin (erik@thauvin.net)
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package net.thauvin.erik.mobibot.modules;
|
package net.thauvin.erik.mobibot;
|
||||||
|
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.testng.annotations.BeforeSuite;
|
import org.testng.annotations.BeforeSuite;
|
||||||
|
@ -49,10 +49,10 @@ import java.util.Properties;
|
||||||
* @created 2019-04-08
|
* @created 2019-04-08
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
*/
|
*/
|
||||||
class LocalProperties {
|
public class LocalProperties {
|
||||||
private static final Properties localProps = new Properties();
|
private static final Properties localProps = new Properties();
|
||||||
|
|
||||||
static String getProperty(final String key) {
|
public static String getProperty(final String key) {
|
||||||
if (localProps.containsKey(key)) {
|
if (localProps.containsKey(key)) {
|
||||||
return localProps.getProperty(key);
|
return localProps.getProperty(key);
|
||||||
} else {
|
} else {
|
86
src/test/java/net/thauvin/erik/mobibot/PinboardUtilsTest.kt
Normal file
86
src/test/java/net/thauvin/erik/mobibot/PinboardUtilsTest.kt
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
/*
|
||||||
|
* PinboardTest.kt
|
||||||
|
*
|
||||||
|
* Copyright (c) 2004-2020, Erik C. Thauvin (erik@thauvin.net)
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* Redistributions of source code must retain the above copyright notice, this
|
||||||
|
* list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* Neither the name of this project nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* 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 HOLDER 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package net.thauvin.erik.mobibot
|
||||||
|
|
||||||
|
import net.thauvin.erik.mobibot.entries.EntryLink
|
||||||
|
import net.thauvin.erik.pinboard.PinboardPoster
|
||||||
|
import org.testng.Assert
|
||||||
|
import org.testng.annotations.Test
|
||||||
|
import java.io.IOException
|
||||||
|
import java.net.URI
|
||||||
|
import java.net.URISyntaxException
|
||||||
|
import java.net.URLEncoder
|
||||||
|
import java.net.http.HttpClient
|
||||||
|
import java.net.http.HttpRequest
|
||||||
|
import java.net.http.HttpResponse
|
||||||
|
import java.nio.charset.StandardCharsets
|
||||||
|
|
||||||
|
class PinboardUtilsTest : LocalProperties() {
|
||||||
|
@Test
|
||||||
|
@Throws(InterruptedException::class, IOException::class, URISyntaxException::class)
|
||||||
|
fun pinboardTest() {
|
||||||
|
val apiToken = getProperty("pinboard-api-token")
|
||||||
|
val pinboard = PinboardPoster(apiToken)
|
||||||
|
val url = "https://www.example.com/"
|
||||||
|
val ircServer = "irc.test.com"
|
||||||
|
val entry = EntryLink(url, "Test Example", "ErikT", "", "#mobitopia", listOf("test"))
|
||||||
|
|
||||||
|
PinboardUtils.addPin(pinboard, ircServer, entry)
|
||||||
|
Assert.assertTrue(validatePin(apiToken, ircServer, entry.link), "add")
|
||||||
|
entry.link = "https://www.foo.com/"
|
||||||
|
|
||||||
|
PinboardUtils.updatePin(pinboard, ircServer, url, entry)
|
||||||
|
Assert.assertTrue(validatePin(apiToken, ircServer, entry.link), "update")
|
||||||
|
|
||||||
|
PinboardUtils.deletePin(pinboard, entry)
|
||||||
|
Assert.assertFalse(validatePin(apiToken, url = entry.link), "delete")
|
||||||
|
}
|
||||||
|
|
||||||
|
@Throws(IOException::class, URISyntaxException::class, InterruptedException::class)
|
||||||
|
private fun validatePin(apiToken: String, ircServer: String = "", url: String): Boolean {
|
||||||
|
val request = HttpRequest.newBuilder().uri(
|
||||||
|
URI(
|
||||||
|
"https://api.pinboard.in/v1/posts/get?auth_token=${apiToken}&tag=test&"
|
||||||
|
+ URLEncoder.encode(url, StandardCharsets.UTF_8)
|
||||||
|
)
|
||||||
|
).GET().build()
|
||||||
|
|
||||||
|
val response = HttpClient.newBuilder()
|
||||||
|
.build()
|
||||||
|
.send(request, HttpResponse.BodyHandlers.ofString())
|
||||||
|
|
||||||
|
return if (response.statusCode() == 200) {
|
||||||
|
response.body().contains(url) && response.body().contains(ircServer)
|
||||||
|
} else false
|
||||||
|
}
|
||||||
|
}
|
|
@ -33,6 +33,7 @@
|
||||||
package net.thauvin.erik.mobibot.modules;
|
package net.thauvin.erik.mobibot.modules;
|
||||||
|
|
||||||
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
||||||
|
import net.thauvin.erik.mobibot.LocalProperties;
|
||||||
import net.thauvin.erik.mobibot.msg.Message;
|
import net.thauvin.erik.mobibot.msg.Message;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
package net.thauvin.erik.mobibot.modules;
|
package net.thauvin.erik.mobibot.modules;
|
||||||
|
|
||||||
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
||||||
|
import net.thauvin.erik.mobibot.LocalProperties;
|
||||||
import net.thauvin.erik.mobibot.msg.Message;
|
import net.thauvin.erik.mobibot.msg.Message;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
package net.thauvin.erik.mobibot.modules;
|
package net.thauvin.erik.mobibot.modules;
|
||||||
|
|
||||||
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
||||||
|
import net.thauvin.erik.mobibot.LocalProperties;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
|
|
|
@ -34,6 +34,7 @@ package net.thauvin.erik.mobibot.modules;
|
||||||
|
|
||||||
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
||||||
import net.aksingh.owmjapis.api.APIException;
|
import net.aksingh.owmjapis.api.APIException;
|
||||||
|
import net.thauvin.erik.mobibot.LocalProperties;
|
||||||
import net.thauvin.erik.mobibot.msg.Message;
|
import net.thauvin.erik.mobibot.msg.Message;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue