Questions tagged [endly]

End to end functional test and automation framework

Endly is engineer centric language agnostic automation and end to end functional testing framework written in golang addressing most of the aspects of testing automation, namely:

  • Local or remote system preparation including all services required by the application.
  • Checking out the application code
  • Building and deploying the application as a separate process, or in the container.
  • Data preparation including RDBMS, or key/value store
  • Test use cases with HTTP, REST or selenium runner.
  • Verification of responses, data in data stores or log produced.
11 questions
1
vote
1 answer

Cloud function e2e

How do I write e2e or integration testig for cloud function, so far I've been able to use bash automation script, but when deployment I can not easily detect it gcloud functions deploy MyFunction --entry-point MyFunction --runtime go111…
terry.zhao
  • 29
  • 1
  • 2
1
vote
1 answer

Platform independent go build for engineer testing

My typical endly test automation is parametrized to takes place either on my localhost(osx) or on staging box (linux), ideally I want to build separately cross platform app binary. All that said when I build my app binary on OSX for linux, I am…
terry.zhao
  • 29
  • 1
  • 2
1
vote
2 answers

How to write a simple e2e test?

The e2e test should go to the specific page and check URL out. app.e2e-spec.ts import { AppPageObject } from './app.po'; describe('Subscriptions', () => { let main: AppPageObject; beforeEach(() => { main = new AppPageObject(); }); …
Dmitry Grinko
  • 13,806
  • 14
  • 62
  • 86
0
votes
1 answer

Large dataset with incompatible data comparison across various databases

We have sync pipeline between MySQL and Big Query running, I want to compare some critical tables, but they're quite big in million rows, and up to 50+ column each. I have tried to use CSV dump, and compare that way but there is also data type…
0
votes
1 answer

How to access cross data store sequence generated ID within the same use case

I am working on one end to end testing scenario where I need a user record perf map use a key which is a reference to meta_table id within the same use case. While user data is stored in NoSQL database, meta_table is stored in RDBMS and uses…
terry.zhao
  • 29
  • 1
  • 2
0
votes
1 answer

Endly error related to ssh

I using endly for end to end testing and my application is running on docker container, and I am facing this error. I already have my secret keys/folder in place. [run[build]run|build[Init]docker.run ssh: no key found at exec.extract …
0
votes
1 answer

Private repo with docker build

My application uses both public and private github 3rd party dependencies, I am trying to build my application within docker container with endly(https://github.com/viant/endly), When I run endly -r=app, I am seeing the following issue: Cloning into…
kyle-la
  • 11
  • 1
0
votes
1 answer

JSON int key issue data e2e (invalid character '1' looking for beginning of object key string)

My app uses aerospike to store Map in one of the bins, I am use endly for e2e testing, which uses JSON for data representation: How do to populate datastore with with JSON where key needs to be an int ? Since json does not allowed int key I am…
terry.zhao
  • 29
  • 1
  • 2
0
votes
0 answers

Selenium Endly Java issue

When I try to run selenium test with endly, my JDK version is 1.8_161 I see the following error on running: endly –r test Here is the error: [init[test]selenium.run unknown error: connection refused Build info: version: '3.4.0', revision:…
0
votes
1 answer

dataflow bigquery unit tests

I have a dataflow pipeline that reads data from files in GCS, transforms it and places the results to BQ. I created the tests that checks the expected TableRows are in the PCollection, but how I can verify the data that will be written into BQ is…
CCC
  • 2,642
  • 7
  • 40
  • 62
-1
votes
1 answer

Generating test-result report in Endly for Jenkins

How do I generate an XML test result report in Endly for parsing and viewing in Jenkins?