This is an automated email from the ASF dual-hosted git repository.
csantanapr pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-go.git.
from c16d4d3 The foundation of an openwhisk runtime proxy in Go (#5)
add 6e80a9d Refactor tests
new 5d10e9f Merge pull request #8 from sciabarracom/master
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitattributes | 31 +++
.gitignore | 13 +-
.travis.yml | 33 +++
CREDITS.txt | 3 +
NOTICE.md => NOTICE.txt | 3 +-
README.md | 133 +++++++++++-
core/actionloop-golang/Dockerfile | 13 ++
core/actionloop-golang/build.gradle | 17 ++
core/actionloop/Dockerfile | 6 +
core/actionloop/build.gradle | 10 +
core/gobuild | 48 +++++
main/proxy.go | 20 +-
openwhisk/_test/action/.gitignore | 8 +
.../_test/action/hello.go | 43 ++--
.../_test/action/hello_test.go | 33 ++-
test/src/hi.go => openwhisk/_test/action/main.go | 13 +-
openwhisk/_test/build.sh | 48 ++++-
openwhisk/_test/dir/etc | 1 +
openwhisk/_test/etc | 1 +
openwhisk/_test/exec.go | 20 +-
test/src/empty.go => openwhisk/_test/exec.src | 0
.../hello_message.go => openwhisk/_test/hello.src | 17 +-
main/proxy.go => openwhisk/_test/hello1.src | 32 +--
.../_test/hello_greeting.src | 8 +-
.../_test/hello_message.src | 6 +-
test/src/hi.go => openwhisk/_test/hi.src | 0
openwhisk/_test/postcompile.sh | 6 +
openwhisk/_test/precompile.sh | 14 ++
openwhisk/_test/zips.sh | 4 +
openwhisk/actionProxy.go | 87 +++++---
openwhisk/actionProxy_test.go | 72 +++++--
openwhisk/compiler.go | 76 +++++++
openwhisk/compiler_test.go | 165 ++++++++++++++
openwhisk/executor.go | 43 ++--
openwhisk/executor_test.go | 22 +-
openwhisk/extractor.go | 31 ++-
openwhisk/extractor_test.go | 53 +++--
openwhisk/initHandler.go | 71 ++++--
openwhisk/initHandler_test.go | 238 +++++++++++++++++++++
openwhisk/runHandler.go | 15 +-
openwhisk/util_test.go | 141 ++++++++++++
settings.gradle | 3 +
test/NOTES.md | 38 ++++
test/README.md | 9 -
test/bin/build.sh | 25 ++-
test/bin/init.sh | 33 ++-
test/bin/post.sh | 16 ++
test/bin/run.sh | 18 +-
test/crammer.sh | 21 ++
test/{src/hello_message.go => etc/hello.go} | 14 +-
test/etc/hello.js | 18 ++
test/etc/hello.sh | 16 ++
main/proxy.go => test/golang/hello/hello.go | 32 +--
test/{src/hello_message.go => golang/main/main.go} | 17 +-
test/golang/out/hello | Bin 0 -> 8458012 bytes
test/golang/out/main | Bin 0 -> 8458011 bytes
test/src/hello/hello.go | 16 ++
test/src/hello/hello_test.go | 16 ++
test/src/hello_greeting.go | 4 +-
test/start.sh | 26 ++-
test/stop.sh | 26 +++
test/{src/hi.go => swift/hello/hello.swift} | 15 +-
test/{src/hi.go => swift/main/main.swift} | 14 +-
test/swift/out/hello | Bin 0 -> 43448 bytes
test/swift/out/main | Bin 0 -> 43448 bytes
test/test_actionloop-golang.t | 66 ++++++
test/{test.t => test_actionloop.t} | 52 ++++-
tools/travis/build.sh | 40 ++++
tools/travis/setup.sh | 30 +++
tools/travis/test.sh | 33 +++
70 files changed, 1904 insertions(+), 292 deletions(-)
create mode 100644 .gitattributes
create mode 100644 .travis.yml
create mode 100644 CREDITS.txt
rename NOTICE.md => NOTICE.txt (82%)
create mode 100644 core/actionloop-golang/Dockerfile
create mode 100644 core/actionloop-golang/build.gradle
create mode 100644 core/actionloop/Dockerfile
create mode 100644 core/actionloop/build.gradle
create mode 100755 core/gobuild
create mode 100644 openwhisk/_test/action/.gitignore
copy test/src/hello_message.go => openwhisk/_test/action/hello.go (58%)
copy test/src/hello_greeting.go => openwhisk/_test/action/hello_test.go (64%)
copy test/src/hi.go => openwhisk/_test/action/main.go (81%)
copy test/src/empty.go => openwhisk/_test/exec.src (100%)
copy test/src/hello_message.go => openwhisk/_test/hello.src (79%)
copy main/proxy.go => openwhisk/_test/hello1.src (67%)
copy test/src/hello_greeting.go => openwhisk/_test/hello_greeting.src (83%)
copy test/src/hello_message.go => openwhisk/_test/hello_message.src (94%)
copy test/src/hi.go => openwhisk/_test/hi.src (100%)
create mode 100755 openwhisk/_test/postcompile.sh
create mode 100755 openwhisk/_test/precompile.sh
create mode 100755 openwhisk/_test/zips.sh
create mode 100644 openwhisk/compiler.go
create mode 100644 openwhisk/compiler_test.go
create mode 100644 openwhisk/initHandler_test.go
create mode 100644 openwhisk/util_test.go
create mode 100644 test/NOTES.md
delete mode 100644 test/README.md
create mode 100644 test/crammer.sh
copy test/{src/hello_message.go => etc/hello.go} (77%)
copy main/proxy.go => test/golang/hello/hello.go (67%)
copy test/{src/hello_message.go => golang/main/main.go} (79%)
create mode 100755 test/golang/out/hello
create mode 100755 test/golang/out/main
create mode 100755 test/stop.sh
copy test/{src/hi.go => swift/hello/hello.swift} (78%)
copy test/{src/hi.go => swift/main/main.swift} (78%)
create mode 100755 test/swift/out/hello
create mode 100755 test/swift/out/main
create mode 100644 test/test_actionloop-golang.t
rename test/{test.t => test_actionloop.t} (53%)
create mode 100755 tools/travis/build.sh
create mode 100755 tools/travis/setup.sh
create mode 100755 tools/travis/test.sh
--
To stop receiving notification emails like this one, please contact
[email protected].