-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ruben Vargas <[email protected]>
- Loading branch information
1 parent
6843c24
commit 4d25e67
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
56 changes: 56 additions & 0 deletions
56
packages/jaeger-ui/src/model/ddg/transformTracesToPaths.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright (c) 2019 Uber Technologies, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import transformTracesToPaths from './transformTracesToPaths'; | ||
|
||
describe('transform traces to ddg paths', () => { | ||
const tracesResults = { | ||
'Trace-1': { | ||
data: { | ||
traceID: 'Trace-1', | ||
spans: [ | ||
{ | ||
traceID: '1', | ||
spanID: '1', | ||
operationName: 'HTTP GET /customer', | ||
references: [ | ||
{ | ||
refType: 'CHILD_OF', | ||
traceID: '1', | ||
spanID: '2', | ||
}, | ||
], | ||
processID: 'p1', | ||
}, | ||
{ | ||
traceID: '1', | ||
spanID: '2', | ||
operationName: 'HTTP GET /', | ||
processID: 'p1', | ||
}, | ||
], | ||
processes: { | ||
p1: { | ||
serviceName: 'customer', | ||
}, | ||
}, | ||
}, | ||
}, | ||
}; | ||
it('transforms trace results payload', () => { | ||
const payload = transformTracesToPaths(tracesResults, 'customer'); | ||
expect(payload.length).toBe(1); | ||
expect(payload[0].path.length).toBe(2); | ||
}); | ||
}); |