mirror of
https://github.com/atom/atom.git
synced 2026-02-05 12:15:07 -05:00
47 lines
1.8 KiB
CoffeeScript
47 lines
1.8 KiB
CoffeeScript
RootView = require 'root-view'
|
|
GrammarView = require 'grammar-view'
|
|
_ = require 'underscore'
|
|
|
|
describe "GrammarView", ->
|
|
[editor, textGrammar, jsGrammar] = []
|
|
|
|
beforeEach ->
|
|
window.rootView = new RootView
|
|
project.removeGrammarOverrideForPath('sample.js')
|
|
rootView.open('sample.js')
|
|
editor = rootView.getActiveEditor()
|
|
rootView.attachToDom()
|
|
textGrammar = _.find syntax.grammars, (grammar) -> grammar.name is 'Plain Text'
|
|
expect(textGrammar).toBeTruthy()
|
|
jsGrammar = _.find syntax.grammars, (grammar) -> grammar.name is 'JavaScript'
|
|
expect(jsGrammar).toBeTruthy()
|
|
expect(editor.getGrammar()).toBe jsGrammar
|
|
|
|
describe "when editor:select-grammar is toggled", ->
|
|
it "displays a list of all the available grammars", ->
|
|
editor.trigger 'editor:select-grammar'
|
|
grammarView = rootView.find('.grammar-view').view()
|
|
expect(grammarView).toExist()
|
|
grammars = syntax.grammars
|
|
expect(grammarView.list.children('li').length).toBe grammars.length + 1
|
|
expect(grammarView.list.children('li:first').text()).toBe 'Auto Detect'
|
|
|
|
describe "when a grammar is selected", ->
|
|
it "sets the new grammar on the editor", ->
|
|
editor.trigger 'editor:select-grammar'
|
|
grammarView = rootView.find('.grammar-view').view()
|
|
grammarView.confirmed(textGrammar)
|
|
expect(editor.getGrammar()).toBe textGrammar
|
|
|
|
describe "when auto-detect is selected", ->
|
|
it "restores the auto-detected grammar on the editor", ->
|
|
editor.trigger 'editor:select-grammar'
|
|
grammarView = rootView.find('.grammar-view').view()
|
|
grammarView.confirmed(textGrammar)
|
|
expect(editor.getGrammar()).toBe textGrammar
|
|
|
|
editor.trigger 'editor:select-grammar'
|
|
grammarView = rootView.find('.grammar-view').view()
|
|
grammarView.confirmed(grammarView.array[0])
|
|
expect(editor.getGrammar()).toBe jsGrammar
|