mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-28 04:41:09 +00:00
28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
describe("LineFormatter", function() {
|
|
it("passes through output without colors", function() {
|
|
var lineFormatter = new Drone.LineFormatter();
|
|
expect(lineFormatter.format("foo")).toEqual("foo");
|
|
});
|
|
|
|
it("sets colors", function() {
|
|
var lineFormatter = new Drone.LineFormatter();
|
|
var input = "\u001B[31;31mthis is red\u001B[0m";
|
|
var expected = '<span style="color:red;">this is red</span>';
|
|
expect(lineFormatter.format(input)).toEqual(expected);
|
|
});
|
|
|
|
it("sets multiple colors", function() {
|
|
var lineFormatter = new Drone.LineFormatter();
|
|
var input = "\u001B[31;31mthis is red\u001B[0m\u001B[36mthis is cyan\u001B[0m";
|
|
var expected = '<span style="color:red;">this is red</span><span style="color:cyan;">this is cyan</span>';
|
|
expect(lineFormatter.format(input)).toEqual(expected);
|
|
});
|
|
|
|
it("escapes greater than and lesser than symbols", function() {
|
|
var lineFormatter = new Drone.LineFormatter();
|
|
var input = "<blink>hello</blink>";
|
|
var expected = '<blink>hello</blink>';
|
|
expect(lineFormatter.format(input)).toEqual(expected);
|
|
|
|
});
|
|
});
|