102. EPMO Open Source Coordination Office Redaction File Detail Report

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

102.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\utils rpc-config-spec.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\utils rpc-config-spec.js Tue Oct 3 18:46:53 2017 UTC

102.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 9 90
Changed 8 28
Inserted 0 0
Removed 0 0

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

102.4 Active regular expressions

No regular expressions were active.

102.5 Comparison detail

  1   'use stric t';
  2  
  3   var rpcUti l = requir e('./rpc-c onfig');
  4   var siteHa sh = ' R E D A CTED ';
  5   var divisi on = '500' ;
  6   var user =  {
  7       site:  siteHash,
  8       divisi on: divisi on
  9   };
  10   var config  = {
  11       rpcCon fig: {
  12           co ntext: 'HM P UI CONTE XT'
  13       },
  14       vistaS ites: {
  15             ' R E D A CTED ': {
  16                division : [{
  17                    id:  '500',
  18                    name : 'PANORAM A'
  19                }],
  20                  host: ' IP          ',
  21                  port:  PORT ,
  22                producti on: false,
  23                  accessCode : ' REDACT ',
  24                  verifyCode : ' REDACTED ',
  25                localIP:  '127.0.0. 1',
  26                localAdd ress: 'loc alhost'
  27           },
  28           'C 877': {
  29                division : [{
  30                    id:  '500',
  31                    name : 'KODAK'
  32                }],
  33                  host: ' IP          ',
  34                  port:  PORT ,
  35                producti on: false,
  36                  accessCode : ' REDACT ',
  37                  verifyCode : ' REDACTED ',
  38                localIP:  '127.0.0. 1',
  39                localAdd ress: 'loc alhost'
  40           }
  41       }
  42   };
  43  
  44  
  45   describe(' getVistaRp cConfig',  function()  {
  46       it('te sts that g etVistaRpc Config() c orrectly b uilds the  rpcConfigu ration', f unction()  {
  47           ex pect(rpcUt il.getVist aRpcConfig uration(co nfig, user )).to.eql( {
  48                context:  'HMP UI C ONTEXT',
  49                division : '500',
  50                  host: ' IP          ',
  51                  port:  PORT ,
  52                producti on: false,
  53                  accessCode : ' REDACT ',
  54                  verifyCode : ' REDACTED ',
  55                localIP:  '127.0.0. 1',
  56                localAdd ress: 'loc alhost'
  57           }) ;
  58       });
  59   });