Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Decaf the tests #297

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
245 changes: 245 additions & 0 deletions spec/body-parser-spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,245 @@
const BodyParser = require('../lib/snippet-body-parser');

describe("Snippet Body Parser", () => {
it("breaks a snippet body into lines, with each line containing tab stops at the appropriate position", () => {
const bodyTree = BodyParser.parse(
"the quick brown $1fox ${2:jumped ${3:over}\n" +
"}the ${4:lazy} dog"
);
expect(bodyTree).toEqual([
"the quick brown ",
{index: 1, content: []},
"fox ",
{
index: 2,
content: [
"jumped ",
{index: 3, content: ["over"]},
"\n"
],
},
"the ",
{index: 4, content: ["lazy"]},
" dog"
]);
});

it("removes interpolated variables in placeholder text (we don't currently support it)", () => {
const bodyTree = BodyParser.parse(
"module ${1:ActiveRecord::${TM_FILENAME/(?:\\A|_)([A-Za-z0-9]+)(?:\\.rb)?/(?2::\\u$1)/g}}"
);
expect(bodyTree).toEqual([
"module ",
{
"index": 1,
"content": ["ActiveRecord::", ""]
}
]);
});

it("skips escaped tabstops", () => {
const bodyTree = BodyParser.parse(
"snippet $1 escaped \\$2 \\\\$3"
);
expect(bodyTree).toEqual([
"snippet ",
{
index: 1,
content: []
},
" escaped $2 \\",
{
index: 3,
content: []
}
]);
});

it("includes escaped right-braces", () => {
const bodyTree = BodyParser.parse(
"snippet ${1:{\\}}"
);
expect(bodyTree).toEqual([
"snippet ",
{
index: 1,
content: ["{}"]
}
]);
});

it("parses a snippet with transformations", () => {
const bodyTree = BodyParser.parse(
"<${1:p}>$0</${1/f/F/}>"
);
expect(bodyTree).toEqual([
'<',
{index: 1, content: ['p']},
'>',
{index: 0, content: []},
'</',
{index: 1, content: [], substitution: {find: /f/g, replace: ['F']}},
'>'
]);
});

it("parses a snippet with multiple tab stops with transformations", () => {
const bodyTree = BodyParser.parse(
"${1:placeholder} ${1/(.)/\\u$1/} $1 ${2:ANOTHER} ${2/^(.*)$/\\L$1/} $2"
);
expect(bodyTree).toEqual([
{index: 1, content: ['placeholder']},
' ',
{
index: 1,
content: [],
substitution: {
find: /(.)/g,
replace: [
{escape: 'u'},
{backreference: 1}
]
}
},
' ',
{index: 1, content: []},
' ',
{index: 2, content: ['ANOTHER']},
' ',
{
index: 2,
content: [],
substitution: {
find: /^(.*)$/g,
replace: [
{escape: 'L'},
{backreference: 1}
]
}
},
' ',
{index: 2, content: []},
]);
});


it("parses a snippet with transformations and mirrors", () => {
const bodyTree = BodyParser.parse(
"${1:placeholder}\n\${1/(.)/\\u$1/}\n$1"
);
expect(bodyTree).toEqual([
{index: 1, content: ['placeholder']},
'\n',
{
index: 1,
content: [],
substitution: {
find: /(.)/g,
replace: [
{escape: 'u'},
{backreference: 1}
]
}
},
'\n',
{index: 1, content: []}
]);
});

it("parses a snippet with a format string and case-control flags", () => {
const bodyTree = BodyParser.parse(
"<${1:p}>$0</${1/(.)(.*)/\\u$1$2/}>"
);
expect(bodyTree).toEqual([
'<',
{index: 1, content: ['p']},
'>',
{index: 0, content: []},
'</',
{
index: 1,
content: [],
substitution: {
find: /(.)(.*)/g,
replace: [
{escape: 'u'},
{backreference: 1},
{backreference: 2}
]
}
},
'>'
]);
});

it("parses a snippet with an escaped forward slash in a transform", () => {
// Annoyingly, a forward slash needs to be double-backslashed just like the
// other escapes.
const bodyTree = BodyParser.parse(
"<${1:p}>$0</${1/(.)\\/(.*)/\\u$1$2/}>"
);
expect(bodyTree).toEqual([
'<',
{index: 1, content: ['p']},
'>',
{index: 0, content: []},
'</',
{
index: 1,
content: [],
substitution: {
find: /(.)\/(.*)/g,
replace: [
{escape: 'u'},
{backreference: 1},
{backreference: 2}
]
}
},
'>'
]);
});

it("parses a snippet with a placeholder that mirrors another tab stop's content", () => {
const bodyTree = BodyParser.parse(
"$4console.${3:log}('${2:$1}', $1);$0"
);
expect(bodyTree).toEqual([
{index: 4, content: []},
'console.',
{index: 3, content: ['log']},
'(\'',
{
index: 2, content: [
{index: 1, content: []}
]
},
'\', ',
{index: 1, content: []},
');',
{index: 0, content: []}
]);
});

it("parses a snippet with a placeholder that mixes text and tab stop references", () => {
const bodyTree = BodyParser.parse(
"$4console.${3:log}('${2:uh $1}', $1);$0"
);
expect(bodyTree).toEqual([
{index: 4, content: []},
'console.',
{index: 3, content: ['log']},
'(\'',
{
index: 2, content: [
'uh ',
{index: 1, content: []}
]
},
'\', ',
{index: 1, content: []},
');',
{index: 0, content: []}
]);
});
});
Loading