1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @emails oncall+js_symbolication
- * @format
- */
- 'use strict';
- const SourceMetadataMapConsumer = require('../SourceMetadataMapConsumer.js');
- describe('SourceMetadataMapConsumer', () => {
- it('ignores metadata beyond the range of the sources array', () => {
- const consumer = new SourceMetadataMapConsumer({
- version: 3,
- mappings: '',
- sources: ['foo'],
- names: [],
- x_facebook_sources: [
- null,
- [
- {
- mappings: '',
- names: [],
- },
- ],
- ],
- });
- expect(consumer.toArray(['foo'])).toEqual([null]);
- });
- it('ignores metadata for a null source', () => {
- const consumer = new SourceMetadataMapConsumer({
- version: 3,
- mappings: '',
- sources: ['foo', null],
- names: [],
- x_facebook_sources: [
- [
- {
- mappings: '',
- names: [],
- },
- ],
- ],
- });
- expect(consumer.toArray(['foo', null])).toEqual([
- [
- {
- mappings: '',
- names: [],
- },
- ],
- null,
- ]);
- });
- it('accepts metadata blob with null function map', () => {
- const consumer = new SourceMetadataMapConsumer({
- version: 3,
- mappings: 'AAAA',
- sources: ['foo'],
- names: [],
- x_facebook_sources: [[null]],
- });
- expect(consumer.functionNameFor({line: 1, column: 0, source: 'foo'})).toBe(
- null,
- );
- });
- it('accepts null metadata blob', () => {
- const consumer = new SourceMetadataMapConsumer({
- version: 3,
- mappings: 'AAAA',
- sources: ['foo'],
- names: [],
- x_facebook_sources: [null],
- });
- expect(consumer.functionNameFor({line: 1, column: 0, source: 'foo'})).toBe(
- null,
- );
- });
- });
|