mirror of
https://github.com/wassname/nvatom.git
synced 2026-09-10 12:21:11 +08:00
Apply the interlink extended grammar only on valid notes
To do so, we need to activate the package on Atom startup.
This commit is contained in:
+41
-32
@@ -9,14 +9,12 @@ describe 'Interlink', ->
|
||||
|
||||
beforeEach ->
|
||||
workspaceElement = atom.views.getView(atom.workspace)
|
||||
activationPromise = atom.packages.activatePackage('nvatom')
|
||||
noteDirectory = temp.mkdirSync()
|
||||
|
||||
atom.config.set('nvatom.directory', noteDirectory)
|
||||
|
||||
atom.commands.dispatch workspaceElement, 'nvatom:toggle'
|
||||
waitsForPromise ->
|
||||
activationPromise
|
||||
atom.packages.activatePackage('nvatom')
|
||||
|
||||
afterEach ->
|
||||
atom.config.set('nvatom.directory', defaultDirectory)
|
||||
@@ -24,39 +22,50 @@ describe 'Interlink', ->
|
||||
describe 'when getInerlinkUnderCursor is called', ->
|
||||
editor = null
|
||||
|
||||
beforeEach ->
|
||||
waitsForPromise ->
|
||||
atom.workspace.open(path.join(noteDirectory, 'Interlink.md')).then (o) -> editor = o
|
||||
describe 'under the note directory', ->
|
||||
beforeEach ->
|
||||
waitsForPromise ->
|
||||
atom.workspace.open(path.join(noteDirectory, 'Interlink.md')).then (o) -> editor = o
|
||||
|
||||
it 'returns a trimmed interlink text', ->
|
||||
testdata = [
|
||||
{ position: [0, 2], text: '[[Car]]', expected: 'Car' },
|
||||
{ position: [0, 2], text: '[[Notational Velocity]]', expected: 'Notational Velocity' },
|
||||
{ position: [0, 2], text: '[[한글 Alphabet Test]]', expected: '한글 Alphabet Test' },
|
||||
{ position: [0, 2], text: '[[ Car ]]', expected: 'Car' },
|
||||
{ position: [0, 2], text: '[[Car/Mini]]', expected: 'Car/Mini' },
|
||||
]
|
||||
it 'returns a trimmed interlink text', ->
|
||||
testdata = [
|
||||
{ position: [0, 2], text: '[[Car]]', expected: 'Car' },
|
||||
{ position: [0, 2], text: '[[Notational Velocity]]', expected: 'Notational Velocity' },
|
||||
{ position: [0, 2], text: '[[한글 Alphabet Test]]', expected: '한글 Alphabet Test' },
|
||||
{ position: [0, 2], text: '[[ Car ]]', expected: 'Car' },
|
||||
{ position: [0, 2], text: '[[Car/Mini]]', expected: 'Car/Mini' },
|
||||
]
|
||||
|
||||
for testitem in testdata
|
||||
editor.setText testitem.text
|
||||
editor.setCursorBufferPosition testitem.position
|
||||
expect(Interlink.getInterlinkUnderCursor(editor)).toBe testitem.expected
|
||||
for testitem in testdata
|
||||
editor.setText testitem.text
|
||||
editor.setCursorBufferPosition testitem.position
|
||||
expect(Interlink.getInterlinkUnderCursor(editor)).toBe testitem.expected
|
||||
|
||||
it 'returns undefined for invalid text', ->
|
||||
testdata = [
|
||||
{ position: [0, 2], text: '[[]]' },
|
||||
{ position: [0, 3], text: '[[]]' },
|
||||
{ position: [0, 2], text: '[[ ]]' },
|
||||
{ position: [0, 1], text: '[Car]' },
|
||||
{ position: [0, 2], text: '[[[Car]]]' },
|
||||
{ position: [0, 2], text: '[[Car]' },
|
||||
{ position: [0, 2], text: '[[Car]]]' },
|
||||
{ position: [0, 1], text: 'Car' },
|
||||
]
|
||||
it 'returns undefined for invalid text', ->
|
||||
testdata = [
|
||||
{ position: [0, 2], text: '[[]]' },
|
||||
{ position: [0, 3], text: '[[]]' },
|
||||
{ position: [0, 2], text: '[[ ]]' },
|
||||
{ position: [0, 1], text: '[Car]' },
|
||||
{ position: [0, 2], text: '[[[Car]]]' },
|
||||
{ position: [0, 2], text: '[[Car]' },
|
||||
{ position: [0, 2], text: '[[Car]]]' },
|
||||
{ position: [0, 1], text: 'Car' },
|
||||
]
|
||||
|
||||
for testitem in testdata
|
||||
editor.setText testitem.text
|
||||
editor.setCursorBufferPosition testitem.position
|
||||
for testitem in testdata
|
||||
editor.setText testitem.text
|
||||
editor.setCursorBufferPosition testitem.position
|
||||
expect(Interlink.getInterlinkUnderCursor(editor)).toBe undefined
|
||||
|
||||
describe 'under a random directory', ->
|
||||
beforeEach ->
|
||||
waitsForPromise ->
|
||||
atom.workspace.open(path.join(temp.mkdirSync(), 'Interlink.md')).then (o) -> editor = o
|
||||
|
||||
it 'does not apply the grammar', ->
|
||||
editor.setText '[[Car]]'
|
||||
editor.setCursorBufferPosition [0, 2]
|
||||
expect(Interlink.getInterlinkUnderCursor(editor)).toBe undefined
|
||||
|
||||
describe 'when openInterlink is called', ->
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
path = require 'path'
|
||||
temp = require 'temp'
|
||||
|
||||
describe "nvAtom", ->
|
||||
defaultDirectory = atom.config.get('nvatom.directory')
|
||||
@@ -7,41 +8,38 @@ describe "nvAtom", ->
|
||||
|
||||
beforeEach ->
|
||||
workspaceElement = atom.views.getView(atom.workspace)
|
||||
activationPromise = atom.packages.activatePackage('nvatom')
|
||||
atom.config.set('nvatom.directory', 'testdata')
|
||||
|
||||
afterEach ->
|
||||
atom.config.set('nvatom.directory', defaultDirectory)
|
||||
|
||||
describe "when the nvatom:toggle event is triggered", ->
|
||||
it "attaches and then detaches the view", ->
|
||||
expect(workspaceElement.querySelector('.nvatom')).not.toExist()
|
||||
|
||||
# This is an activation event, triggering it will cause the package to be activated.
|
||||
atom.commands.dispatch workspaceElement, 'nvatom:toggle'
|
||||
|
||||
noteDirectory = path.join(temp.mkdirSync())
|
||||
atom.config.set('nvatom.directory', noteDirectory)
|
||||
|
||||
waitsForPromise ->
|
||||
activationPromise
|
||||
atom.packages.activatePackage('nvatom')
|
||||
|
||||
runs ->
|
||||
expect(workspaceElement.querySelector('.nvatom')).toExist()
|
||||
expect(workspaceElement.querySelector('.nvatom')).not.toExist()
|
||||
|
||||
atom.commands.dispatch workspaceElement, 'nvatom:toggle'
|
||||
expect(workspaceElement.querySelector('.nvatom')).toExist()
|
||||
expect(workspaceElement.querySelector('.nvatom').parentNode.style.display).not.toBe 'none'
|
||||
|
||||
atom.commands.dispatch workspaceElement, 'nvatom:toggle'
|
||||
expect(workspaceElement.querySelector('.nvatom').parentNode.style.display).toBe 'none'
|
||||
|
||||
it "checks if we banned the default directory under packages directory", ->
|
||||
atom.notifications.clear()
|
||||
noteDirectory = path.join(process.env.ATOM_HOME, 'packages', 'nvatom', 'notebook')
|
||||
atom.config.set('nvatom.directory', noteDirectory)
|
||||
|
||||
waitsForPromise ->
|
||||
atom.packages.activatePackage('notifications')
|
||||
atom.packages.activatePackage('nvatom')
|
||||
|
||||
runs ->
|
||||
noteDirectoryUnderPackageDirectory = path.join(process.env.ATOM_HOME, 'packages', 'nvatom', 'notebook')
|
||||
atom.config.set('nvatom.directory', noteDirectoryUnderPackageDirectory)
|
||||
|
||||
# This is an activation event, triggering it will cause the package to be activated.
|
||||
atom.commands.dispatch workspaceElement, 'nvatom:toggle'
|
||||
|
||||
waitsForPromise ->
|
||||
activationPromise
|
||||
atom.packages.activatePackage('notifications')
|
||||
|
||||
runs ->
|
||||
notificationContainer = workspaceElement.querySelector('atom-notifications')
|
||||
|
||||
Reference in New Issue
Block a user