177. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:04:37 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.

177.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\write\pick-list\multifunction orqqpl4-lex-lookup-itest-spec.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\write\pick-list\multifunction orqqpl4-lex-lookup-itest-spec.js Tue Oct 3 19:16:22 2017 UTC

177.2 Comparison summary

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

177.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

177.4 Active regular expressions

No regular expressions were active.

177.5 Comparison detail

  1   /*global s inon, desc ribe, it * /
  2   'use stric t';
  3  
  4   var getOrq qpl4LexLoo kUp = requ ire('./orq qpl4-lex-l ookup-fetc h-list').g etOrqqpl4L exLookUp;
  5  
  6   var log =  sinon.stub (require(' bunyan').c reateLogge r({ name:  'orqqpl4-l ex-look-up -fetch-lis t' }));
  7   //var log  = require( 'bunyan'). createLogg er({ name:  'orqqpl4- lex-look-u p-fetch-li st' }); // Uncomment  this line  (and comme nt above)  to see out put in Int elliJ cons ole
  8  
  9   var config uration =  {
  10       enviro nment: 'de velopment' ,
  11       contex t: 'OR CPR S GUI CHAR T',
  12         host: ' IP          ',
  13         port:  PORT ,
  14         accessCode : ' REDACT ',
  15         verifyCode : ' REDACTED ',
  16         localIP: ' IP        ',
  17       localA ddress: 'l ocalhost'
  18   };
  19  
  20   describe(' orqqpl4-le x-look-up  resource i ntegration  test', fu nction() {
  21       it('ca n call the  getOrqqpl 4LexLookUp  RPC', fun ction (don e) {
  22           th is.timeout (20000);
  23           va r noMinimu mLength;
  24           ge tOrqqpl4Le xLookUp(lo g, configu ration, 'd ia', 'PLS' , 0, noMin imumLength , function (err, resu lt) {
  25                expect(e rr).to.be. falsy();
  26                expect(r esult).to. be.truthy( );
  27                expect(r esult.leng th).to.be. gt(0);
  28                done();
  29           }) ;
  30       });
  31  
  32       it('ca n call the  getOrqqpl 4LexLookUp  RPC', fun ction (don e) {
  33           th is.timeout (20000);
  34           va r noMinimu mLength =  true;
  35           ge tOrqqpl4Le xLookUp(lo g, configu ration, 'a ', 'PLS',  0, noMinim umLength,  function(e rr, result ) {
  36                expect(e rr).to.be. falsy();
  37                expect(r esult).to. be.truthy( );
  38                expect(r esult.leng th).to.be. gt(0);
  39                done();
  40           }) ;
  41       });
  42   });