aboutsummaryrefslogtreecommitdiff
path: root/test/unit/misc1.moon
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-02-27 16:57:06 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-02-27 17:55:10 -0300
commitd04ca90f5c3aca60641b2ee63931d66f593bbbd3 (patch)
tree91fb60f0120fbfbf0b68d8b1b85b2a4110391738 /test/unit/misc1.moon
parent05b9e11584c30c03cb911bf909374c86450ee13e (diff)
downloadrneovim-d04ca90f5c3aca60641b2ee63931d66f593bbbd3.tar.gz
rneovim-d04ca90f5c3aca60641b2ee63931d66f593bbbd3.tar.bz2
rneovim-d04ca90f5c3aca60641b2ee63931d66f593bbbd3.zip
Add basic infrastructure for unit testing
Tests will be written using the [moonscript](http://moonscript.org/) language, a lua 'dialect' that is whitespace-significant and has a syntax similar to coffeescript. The test framework used is [busted](http://olivinelabs.com/busted/), a bdd framework for lua/moonscript. Luajit has a nice ffi module, which lets lua programs link shared libraries and call it's functions without writing any C code. To take advantage of this fact for testing C functions, a new target was added to CMakeLists.txt, which compiles neovim as a shared library that is loaded by the process running the tests. This commit adds necessary code for downloading and installing a lua package manager(luarocks) locally. It wasn't added as a subtree because there are quite a few blobs in its source tree.
Diffstat (limited to 'test/unit/misc1.moon')
-rw-r--r--test/unit/misc1.moon38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/unit/misc1.moon b/test/unit/misc1.moon
new file mode 100644
index 0000000000..dbcd192262
--- /dev/null
+++ b/test/unit/misc1.moon
@@ -0,0 +1,38 @@
+{:cimport, :internalize, :eq, :ffi} = require 'test.unit.helpers'
+
+misc1 = cimport './src/misc1.h'
+cstr = ffi.typeof 'char[?]'
+
+-- TODO extract constants from vim.h
+
+describe 'misc1 function', ->
+ describe 'fullpathcmp', ->
+ ffi.cdef 'int fullpathcmp(char *s1, char *s2, int checkname);'
+ fullpathcmp = (s1, s2, cn) ->
+ s1 = cstr (string.len s1) + 1, s1
+ s2 = cstr (string.len s2) + 1, s2
+ misc1.fullpathcmp s1, s2, cn or 0
+
+ f1 = 'f1.o'
+ f2 = 'f2.o'
+ f3 = 'test/f1.o'
+ FPC_SAME = 1
+ FPC_DIFF = 2
+ FPC_NOTX = 4
+ FPC_DIFFX = 6
+ FPC_SAMEX = 7
+
+ before_each ->
+ -- create the three files that will be used in this spec
+ (io.open f1, 'w').close!
+ (io.open f2, 'w').close!
+ (io.open f3, 'w').close!
+
+ after_each ->
+ os.remove f1
+ os.remove f2
+ os.remove f3
+
+ it 'returns FPC_SAME when passed the same file', ->
+ eq FPC_SAME, (fullpathcmp f1, f1)
+