io.split.qos.server.integrations.slack.commands.SlackFailedCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qosrunner Show documentation
Show all versions of qosrunner Show documentation
Framework for running JUnit Tests as a Continous Service (QoS)
package io.split.qos.server.integrations.slack.commands;
import com.google.common.base.Preconditions;
import com.google.common.collect.Lists;
import com.google.inject.Inject;
import com.google.inject.name.Named;
import com.ullink.slack.simpleslackapi.SlackAttachment;
import com.ullink.slack.simpleslackapi.SlackSession;
import com.ullink.slack.simpleslackapi.events.SlackMessagePosted;
import io.split.qos.server.QOSServerState;
import io.split.qos.server.integrations.slack.commandintegration.SlackCommand;
import io.split.qos.server.integrations.slack.commandintegration.SlackCommandGetter;
import io.split.qos.server.modules.QOSServerModule;
import io.split.qos.server.util.SlackMessageSender;
import io.split.qos.server.util.TestId;
import io.split.testrunner.util.DateFormatter;
import io.split.testrunner.util.SlackColors;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
/**
* Lists all the failed tests, ordered by time.
*/
public class SlackFailedCommand extends SlackAbstractCommand {
private final QOSServerState state;
private final DateFormatter dateFormatter;
@Inject
public SlackFailedCommand(
QOSServerState state,
DateFormatter dateFormatter,
SlackColors slackColors,
SlackMessageSender slackMessageSender,
SlackCommandGetter slackCommandGetter,
@Named(QOSServerModule.QOS_SERVER_NAME) String serverName) {
super(slackColors, serverName, slackMessageSender, slackCommandGetter);
this.dateFormatter = Preconditions.checkNotNull(dateFormatter);
this.state = state;
}
@Override
public boolean test(SlackMessagePosted messagePosted, SlackSession session) {
Map failed = state.failedTests();
SlackCommand slackCommand = command(messagePosted);
if (failed.isEmpty()) {
messageSender()
.sendSuccess(slackCommand.command(), "No failed tests", messagePosted.getChannel(), session);
return true;
}
List failedTests = failed
.entrySet()
.stream()
.sorted((o1, o2) -> o1.getKey().compareTo(o2.getKey()))
.map(value -> String.format("%s | %s",
value.getKey(),
dateFormatter.formatDate(value.getValue().when())))
.collect(Collectors.toList());
List toBeAdded = Lists.newArrayList();
failedTests
.stream()
.forEach(test -> {
SlackAttachment testAttachment = new SlackAttachment("", "", test, null);
testAttachment
.setColor(colors().getFailed());
toBeAdded.add(testAttachment);
});
messageSender().sendPartition(slackCommand.command(), session, messagePosted.getChannel(), toBeAdded);
return true;
}
@Override
public String description() {
return "Displays a lists of the failed tests";
}
@Override
public String arguments() {
return "[server-name (optional)] failed";
}
@Override
public boolean acceptsArguments(List arguments) {
Preconditions.checkNotNull(arguments);
return arguments.size() == 0;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy