Initial import of code
[flashlight-appl] / test / test.c
diff --git a/test/test.c b/test/test.c
new file mode 100644 (file)
index 0000000..6e8da4f
--- /dev/null
@@ -0,0 +1,72 @@
+/*
+ *  Flashlight applet (widget) for Maemo.
+ *  Copyright (C) 2009 Roman Moravcik
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
+#include "../src/flashlight_lib.h"
+
+int main (int argc, char **argv)
+{
+       FlashlightContext_t *pContext = NULL;
+       int intensity = 0;
+
+       if (flashlight_init(&pContext) == -1) {
+               printf ("flashlight-test: error initializing flashlight library\n");
+               return -1;
+       }
+
+       if (flashlight_open (pContext, "/dev/video0") == -1) {
+               printf ("flashlight-test: error openning device\n");
+               return -1;
+       }
+
+       printf ("Enabling flash LEDs in flashlight mode\n");
+       if (flashlight_set_intensity(pContext, 11) == -1) {
+               printf ("flashlight-test: error setting flashlight intensity to 11\n");
+               return -1;
+       }
+
+       if (flashlight_get_intensity(pContext, &intensity) == -1) {
+               printf ("flashlight-test: error getting flashlight intensity\n");
+               return -1;
+       }
+       printf ("Current flashlight intensity is %d\n", intensity);
+
+       sleep(3);
+
+       printf ("Disabling flash LEDs in flashlight mode\n");
+       if (flashlight_set_intensity(pContext, 0) == -1) {
+               printf ("flashlight-test: error setting flashlight intensity to 0\n");
+               return -1;
+       }
+
+       if (flashlight_close (pContext) == -1) {
+               printf ("flashlight-test: error closing device\n");
+               return -1;
+       }
+
+       if (flashlight_deinit(pContext) == -1) {
+               printf ("flashlight-test: error deinitializing flashlight library\n");
+               return -1;
+       }
+
+       return 0;
+}