summaryrefslogtreecommitdiffstats
path: root/lua/test-lua-plugin.c
blob: 72ec5529ca3e1f8e2bd77cd578346a0593f7cbcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <stdio.h>
#include <glib.h>

#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"

#include "lua-plugin.h"


static const char * progname = "test-lua-plugin";
static lua_State * L = NULL;

static void l_message (const char *pname, const char *msg) {
  if (pname) fprintf(stderr, "%s: ", pname);
  fprintf(stderr, "%s\n", msg);
  fflush(stderr);
}

static int report (lua_State *L, int status) {
  if (status && !lua_isnil(L, -1)) {
    const char *msg = lua_tostring(L, -1);
    if (msg == NULL) msg = "(error object is not a string)";
    l_message(progname, msg);
    lua_pop(L, 1);
  }
  return status;
}

static int run_test(lua_State *L, const char * filename){
  int status = luaL_dofile(L, filename);
  fprintf(stderr, "%s done.\n", filename);
  return report(L, status);
}

int main(int argc, char * argv[]){
  printf("starting test...\n");

  g_type_init();
  
  IBusEnginePlugin * plugin;
  plugin = ibus_engine_plugin_new();

  lua_State * L = ibus_engine_plugin_get_lua_State(plugin);
  run_test(L, "test.lua");
  
  g_assert(lua_plugin_retrieve_plugin(L) == plugin);

  g_object_unref(plugin);

  return 0;
}