Merge branch 'feature/add-tests' into 'master'

Feature/add tests

See merge request !1
This commit is contained in:
Daniel Siepmann 2017-05-19 15:10:04 +00:00
commit c45400e074
10 changed files with 202 additions and 0 deletions

29
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,29 @@
stages:
- build
- test
build:image:
image: docker:git
stage: build
services:
- docker:dind
script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.gitlab.com
- docker build -t registry.gitlab.com/danielsiepmann/neotags .
- docker push registry.gitlab.com/danielsiepmann/neotags:latest
# only:
# - master
lint:coding-guideline:
image: 'registry.gitlab.com/danielsiepmann/neotags:latest'
stage: test
script:
- pep8 .
test:
image: 'registry.gitlab.com/danielsiepmann/neotags:latest'
stage: test
before_script:
- cd rplugin
script:
- python -m unittest test.test_neotags

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3
MAINTAINER Daniel Siepmann
LABEL Description="This image should provide environment to lint neotags" Vendor="DanielSiepmann" Version="1.0"
# Install dependencies
RUN pip install --upgrade pip
RUN pip install --no-cache-dir pep8 neovim pyfakefs

View file

@ -38,3 +38,14 @@ The following options are available:
- ``let g:neotags_logging = 0``
Defines whether to log anything to vims messages.
Development
===========
Install dependencies:
- ``pip install pyfakefs``
Run tests:
``cd rplugin && python -m unittest test.test_neotags``

View file

View file

@ -12,6 +12,8 @@ class NeotagsPlugin(object):
def __init__(self, nvim):
self.nvim = nvim
# Perhaps debugging settings?
# Like autotags, configure regex compared to filename to ignore, e.g.
# fugitive buffers, git commits, etc.
self.options = {
'tags_filename': 'tags',
'ctags_cmd': 'ctags',

0
rplugin/test/__init__.py Normal file
View file

View file

@ -0,0 +1,7 @@
class SomeClass(object):
def __init__(self):
pass
def method(self):
pass

View file

@ -0,0 +1,6 @@
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Universal Ctags Team //
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
!_TAG_PROGRAM_URL https://ctags.io/ /official site/
!_TAG_PROGRAM_VERSION 0.0.0 /4f741b9/

View file

@ -0,0 +1,9 @@
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Universal Ctags Team //
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
!_TAG_PROGRAM_URL https://ctags.io/ /official site/
!_TAG_PROGRAM_VERSION 0.0.0 /4f741b9/
SomeClass example.py /^class SomeClass(object):$/;" kind:class line:1 language:Python inherits:object access:public end:7
__init__ example.py /^ def __init__(self):$/;" kind:member line:3 language:Python scope:class:SomeClass access:public signature:(self) end:5
method example.py /^ def method(self):$/;" kind:member line:6 language:Python scope:class:SomeClass access:public signature:(self) end:7

View file

@ -0,0 +1,130 @@
from unittest.mock import Mock
from unittest.mock import MagicMock
from pyfakefs import fake_filesystem_unittest
import neovim
import os
from python3.neotags import NeotagsPlugin
class TestNeotagsPlugin(fake_filesystem_unittest.TestCase):
def setUp(self):
self.templates_dirname = os.path.join(
os.path.dirname(__file__),
'templates'
)
self.setUpPyfakefs()
self.plugin = NeotagsPlugin(Mock(neovim.api.nvim))
def test_default_options(self):
self.assertEqual('ctags', self.plugin.options['ctags_cmd'])
self.assertEqual('tags', self.plugin.options['tags_filename'])
self.assertEqual(False, self.plugin.options['logging'])
def test_default_options(self):
self.plugin.nvim.configure_mock(vars={})
self.plugin.nvim.vars['neotags_tags_filename'] = 'new_tags'
self.plugin.nvim.vars['neotags_ctags_cmd'] = 'new_ctags'
self.plugin.nvim.vars['neotags_logging'] = True
self.plugin.update_settings()
self.assertEqual('new_tags', self.plugin.options['tags_filename'])
self.assertEqual('new_ctags', self.plugin.options['ctags_cmd'])
self.assertEqual(True, self.plugin.options['logging'])
def test_debug_logs_to_nvim_when_logging_is_active(self):
self.plugin.options['logging'] = True
self.plugin.nvim.out_write = MagicMock()
self.plugin.debug('some message')
self.plugin.nvim.out_write.assert_called_once_with(
"neotags > some message\n"
)
def test_debug_does_not_log_to_nvim_when_logging_is_inactive(self):
self.plugin.options['logging'] = False
self.plugin.nvim.out_write = MagicMock()
self.plugin.debug('some message')
self.plugin.nvim.out_write.assert_not_called()
def test_error_logs_to_nvim_when_logging_is_active(self):
self.plugin.options['logging'] = True
self.plugin.nvim.err_write = MagicMock()
self.plugin.error('some message')
self.plugin.nvim.err_write.assert_called_once_with(
"neotags > some message\n"
)
def test_error_does_not_log_to_nvim_when_logging_is_inactive(self):
self.plugin.options['logging'] = False
self.plugin.nvim.err_write = MagicMock()
self.plugin.error('some message')
self.plugin.nvim.err_write.assert_not_called()
def test_get_tags_file_in_same_folder(self):
filename = '/var/data/some_file.py'
expected_tags_filename = '/var/data/tags'
self.fs.CreateFile(filename)
self.fs.CreateFile(expected_tags_filename)
self.assertEqual(
expected_tags_filename,
self.plugin.get_tags_file(filename)
)
def test_get_tags_file_in_parent_folder(self):
filename = '/var/data/some_file.py'
expected_tags_filename = '/var/tags'
self.fs.CreateFile(filename)
self.fs.CreateFile(expected_tags_filename)
self.assertEqual(
expected_tags_filename,
self.plugin.get_tags_file(filename)
)
def test_get_tags_file_in_root_folder(self):
filename = '/var/data/some_file.py'
expected_tags_filename = '/tags'
self.fs.CreateFile(filename)
self.fs.CreateFile(expected_tags_filename)
self.assertEqual(
expected_tags_filename,
self.plugin.get_tags_file(filename)
)
def test_strips_existing_tags(self):
filename = '/var/data/example.py'
tags_file = '/var/data/tags'
expected_tags_file = os.path.join(
self.templates_dirname,
'expected_tags'
)
self.copyRealFile(
expected_tags_file,
expected_tags_file
)
self.copyRealFile(
os.path.join(self.templates_dirname, 'example.py'),
os.path.join(os.path.dirname(filename), os.path.basename(filename))
)
self.copyRealFile(
os.path.join(self.templates_dirname, 'tags'),
os.path.join(
os.path.dirname(tags_file), os.path.basename(tags_file)
)
)
self.plugin.strip_existing_tags(tags_file, os.path.basename(filename))
with open(tags_file) as f, open(expected_tags_file) as e:
self.assertEqual(e.read(), f.read())