aboutsummaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/helpers.moon35
-rw-r--r--test/unit/misc1.moon38
2 files changed, 73 insertions, 0 deletions
diff --git a/test/unit/helpers.moon b/test/unit/helpers.moon
new file mode 100644
index 0000000000..5705db88a6
--- /dev/null
+++ b/test/unit/helpers.moon
@@ -0,0 +1,35 @@
+ffi = require 'ffi'
+
+-- load neovim shared library
+libnvim = ffi.load './build/src/libnvim-test.so'
+
+-- Luajit ffi parser only understands function signatures.
+-- This helper function normalizes headers, passes to ffi and returns the
+-- library pointer
+cimport = (path) ->
+ -- Can't parse some of vim types, perhaps need to define those before
+ -- automatically importing to ffi
+
+ -- header_file = io.open path, 'rb'
+ -- header = header_file\read '*a'
+ -- header_file.close!
+ -- header = string.gsub header, '#include[^\n]*\n', ''
+ -- header = string.gsub header, '#ifndef[^\n]*\n', ''
+ -- header = string.gsub header, '#define[^\n]*\n', ''
+ -- header = string.gsub header, '#endif[^\n]*\n', ''
+ -- ffi.cdef header
+
+ return libnvim
+
+-- take a pointer to a C-allocated string and return an interned
+-- version while also freeing the memory
+internalize = (cdata) ->
+ ffi.gc cdata, ffi.C.free
+ return ffi.string cdata
+
+return {
+ cimport: cimport
+ internalize: internalize
+ eq: (expected, actual) -> assert.are.same expected, actual
+ ffi: ffi
+}
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)
+