You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2016/07/12 21:09:22 UTC

[1/2] couch commit: updated refs/heads/master to fc4e64d

Repository: couchdb-couch
Updated Branches:
  refs/heads/master ad97a0622 -> fc4e64d84


Add sleep as a test suite function

This adds a class of test suite functions that are only available when a
command line switch is passed to couchjs. This so that the JavaScript
test suite has access to some helpful additional functions that aren't
part of the JavaScript language.

This particular change only adds a single `sleep` function which takes a
single argument as the number of milliseconds to sleep.

COUCHDB-3057


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/367f4b6a
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/367f4b6a
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/367f4b6a

Branch: refs/heads/master
Commit: 367f4b6a7977e83026e8d1823bad9d01b9203579
Parents: acfd7cb
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Jul 12 15:13:47 2016 -0500
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Jul 12 15:13:47 2016 -0500

----------------------------------------------------------------------
 priv/couch_js/help.h |  2 ++
 priv/couch_js/main.c | 37 +++++++++++++++++++++++++++++++++++++
 priv/couch_js/util.c |  2 ++
 priv/couch_js/util.h |  1 +
 4 files changed, 42 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/367f4b6a/priv/couch_js/help.h
----------------------------------------------------------------------
diff --git a/priv/couch_js/help.h b/priv/couch_js/help.h
index f4ddb24..7601e9d 100644
--- a/priv/couch_js/help.h
+++ b/priv/couch_js/help.h
@@ -48,6 +48,8 @@ static const char USAGE_TEMPLATE[] =
     "  -V          display version information and exit\n"
     "  -H          enable %s cURL bindings (only avaiable\n"
     "              if package was built with cURL available)\n"
+    "  -T          enable test suite specific functions (these\n"
+    "              should not be enabled for production systems)\n"
     "  -S SIZE     specify that the runtime should allow at\n"
     "              most SIZE bytes of memory to be allocated\n"
     "  -u FILE     path to a .uri file containing the address\n"

http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/367f4b6a/priv/couch_js/main.c
----------------------------------------------------------------------
diff --git a/priv/couch_js/main.c b/priv/couch_js/main.c
index 1f1bb1d..b2cd210 100644
--- a/priv/couch_js/main.c
+++ b/priv/couch_js/main.c
@@ -14,6 +14,13 @@
 #include <stdio.h>
 #include <string.h>
 
+#ifdef XP_WIN
+#include <windows.h>
+#include <mapiwin.h>
+#else
+#include <unistd.h>
+#endif
+
 #include <jsapi.h>
 #include "config.h"
 #include "http.h"
@@ -275,6 +282,25 @@ seal(JSContext* cx, uintN argc, jsval* vp)
 }
 
 
+static JSBool
+js_sleep(JSContext* cx, uintN argc, jsval* vp)
+{
+    jsval* argv = JS_ARGV(cx, vp);
+    int duration = 0;
+    if(!JS_ConvertArguments(cx, argc, argv, "/i", &duration)) {
+        return JS_FALSE;
+    }
+
+#ifdef XP_WIN
+    Sleep(duration);
+#else
+    usleep(duration * 1000);
+#endif
+
+    return JS_TRUE;
+}
+
+
 JSClass CouchHTTPClass = {
     "CouchHTTP",
     JSCLASS_HAS_PRIVATE
@@ -307,6 +333,12 @@ JSFunctionSpec CouchHTTPFunctions[] = {
 };
 
 
+JSFunctionSpec TestSuiteFunctions[] = {
+    JS_FS("sleep", js_sleep, 1, 0),
+    JS_FS_END
+};
+
+
 static JSFunctionSpec global_functions[] = {
     JS_FS("evalcx", evalcx, 0, 0),
     JS_FS("gc", gc, 0, 0),
@@ -387,6 +419,11 @@ main(int argc, const char* argv[])
         }
     } 
 
+    if(args->use_test_funs) {
+        if(couch_load_funcs(cx, global, TestSuiteFunctions) != JS_TRUE)
+            return 1;
+    }
+
     for(i = 0 ; args->scripts[i] ; i++) {
         // Convert script source to jschars.
         scriptsrc = couch_readfile(cx, args->scripts[i]);

http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/367f4b6a/priv/couch_js/util.c
----------------------------------------------------------------------
diff --git a/priv/couch_js/util.c b/priv/couch_js/util.c
index b4700de..2f2a2a7 100644
--- a/priv/couch_js/util.c
+++ b/priv/couch_js/util.c
@@ -88,6 +88,8 @@ couch_parse_args(int argc, const char* argv[])
             exit(0);
         } else if(strcmp("-H", argv[i]) == 0) {
             args->use_http = 1;
+        } else if(strcmp("-T", argv[i]) == 0) {
+            args->use_test_funs = 1;
         } else if(strcmp("-S", argv[i]) == 0) {
             args->stack_size = atoi(argv[++i]);
             if(args->stack_size <= 0) {

http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/367f4b6a/priv/couch_js/util.h
----------------------------------------------------------------------
diff --git a/priv/couch_js/util.h b/priv/couch_js/util.h
index 65a2a06..3c71f69 100644
--- a/priv/couch_js/util.h
+++ b/priv/couch_js/util.h
@@ -17,6 +17,7 @@
 
 typedef struct {
     int          use_http;
+    int          use_test_funs;
     int          stack_size;
     const char** scripts;
     const char*  uri_file;


[2/2] couch commit: updated refs/heads/master to fc4e64d

Posted by da...@apache.org.
Merge branch '3057-add-couch-js-sleep-test-suite-helper'


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/fc4e64d8
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/fc4e64d8
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/fc4e64d8

Branch: refs/heads/master
Commit: fc4e64d84f4de068cb54db635ad9900bb187289a
Parents: ad97a06 367f4b6
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Jul 12 16:09:03 2016 -0500
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Jul 12 16:09:03 2016 -0500

----------------------------------------------------------------------
 priv/couch_js/help.h |  2 ++
 priv/couch_js/main.c | 37 +++++++++++++++++++++++++++++++++++++
 priv/couch_js/util.c |  2 ++
 priv/couch_js/util.h |  1 +
 4 files changed, 42 insertions(+)
----------------------------------------------------------------------