856. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/3/2017 11:16:02 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

856.1 Files compared

# Location File Last Modified
1 ehmp.zip\ehmp\ehmp\product\production\vx-sync\tests\integrationtests\handlers\vler-sync-request vler-sync-request-handler-itest-spec.js Mon Jul 10 17:46:22 2017 UTC
2 ehmp.zip\ehmp\ehmp\product\production\vx-sync\tests\integrationtests\handlers\vler-sync-request vler-sync-request-handler-itest-spec.js Tue Oct 3 12:55:11 2017 UTC

856.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 72
Changed 1 2
Inserted 0 0
Removed 0 0

856.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

856.4 Active regular expressions

No regular expressions were active.

856.5 Comparison detail

  1   'use stric t';
  2  
  3   require('. ./../../.. /env-setup ');
  4  
  5   var uuid =  require(' node-uuid' );
  6   var logger  = require (global.VX _DUMMIES +  'dummy-lo gger');
  7   var jobUti l = requir e(global.V X_UTILS +  'job-utils ');
  8   var testHa ndler = re quire(glob al.VX_INTT ESTS + 'fr amework/ha ndler-test -framework ').testHan dler;
  9   var patien tIdUtil =  require(gl obal.VX_UT ILS + 'pat ient-ident ifier-util s');
  10  
  11   var testCo nfig = req uire(globa l.VX_INTTE STS + 'tes t-config') ;
  12   var vx_syn c_ip = tes tConfig.vx syncIP;
  13   var handle r = requir e(global.V X_HANDLERS  + 'vler-s ync-reques t/vler-syn c-request- handler');
  14  
  15   xdescribe( 'vler-sync -request-h andler.js' , function () {
  16       var ro otJob = jo bUtil.crea teEnterpri seSyncRequ est(patien tIdentifie r, uuid.v4 (), false) ;
  17       var pa tientIdent ifier = pa tientIdUti l.create(' icn', '101 10V004877' );
  18       var jo b = jobUti l.createVl erSyncRequ est(patien tIdentifie r, rootJob );
  19  
  20       var co nfig = {
  21           vl er: {
  22                domains:  ['vlerdoc ument']
  23           }
  24       };
  25  
  26       var en vironment  = {};
  27  
  28       var ho st = vx_sy nc_ip;
  29         var port =   PORT ;
  30       var tu bename = ' vx-sync-te st';
  31  
  32       var ma tchingJobT ypes = [jo bUtil.vler DomainSync RequestTyp e('allergy ')];
  33  
  34       testHa ndler(hand ler, logge r, config,  environme nt, host,  port, tube name, job,  matchingJ obTypes);
  35   });
  36  
  37