generic-identity #1

  • //
  • guest/
  • perforce_software/
  • helix-web-services/
  • main/
  • source/
  • client-javascript/
  • node_modules/
  • recast/
  • example/
  • generic-identity
  • View
  • Commits
  • Open Download .zip Download (401 B)
#!/usr/bin/env node

// This script should reprint the contents of the given file without
// reusing the original source, but with identical AST structure.

var recast = require("recast");

recast.run(function(ast, callback) {
    recast.visit(ast, {
        visitNode: function(path) {
            this.traverse(path);
            path.node.original = null;
        }
    });

    callback(ast);
});
# Change User Description Committed
#1 19553 swellard Move and rename clients
//guest/perforce_software/helix-web-services/main/source/clients/2016.1.0/javascript/node_modules/recast/example/generic-identity
#1 19053 tjuricek Rebuild JavaScript Client SDK.

The JavaScript client now is a "typed" approach that tends to be similar in approach to the other clients, based on the swagger definition for the platform version.

Importantly, client SDK tests are individual scripts (that run under node) that are actually controlled via TestNG. This approach now lets us use a consistent test reporting format so we can at least collect reports from each of the jobs.

The documentation is still in progress, that I want to validate as the tests are generated.