|
| 1 | +/* |
| 2 | + * Copyright (c) 2015, Facebook, Inc. |
| 3 | + * All rights reserved. |
| 4 | + * |
| 5 | + * This source code is licensed under the BSD-style license found in the |
| 6 | + * LICENSE file in the root directory of this source tree. An additional grant |
| 7 | + * of patent rights can be found in the PATENTS file in the same directory. |
| 8 | + * |
| 9 | + */ |
| 10 | + |
| 11 | +/*global jest, describe, beforeEach, it, expect*/ |
| 12 | + |
| 13 | +"use strict"; |
| 14 | + |
| 15 | +jest.autoMockOff(); |
| 16 | + |
| 17 | +describe('resolveToValue', () => { |
| 18 | + var astNodesAreEquivalent; |
| 19 | + var builders; |
| 20 | + var utils; |
| 21 | + var resolveToValue; |
| 22 | + |
| 23 | + function parse(src) { |
| 24 | + var root = utils.parse(src); |
| 25 | + return root.get('body', root.node.body.length - 1, 'expression'); |
| 26 | + } |
| 27 | + |
| 28 | + beforeEach(() => { |
| 29 | + var recast = require('recast'); |
| 30 | + astNodesAreEquivalent = recast.types.astNodesAreEquivalent; |
| 31 | + builders = recast.types.builders; |
| 32 | + resolveToValue = require('../resolveToValue'); |
| 33 | + utils = require('../../../tests/utils'); |
| 34 | + }); |
| 35 | + |
| 36 | + it('resolves simple variable declarations', () => { |
| 37 | + var path = parse([ |
| 38 | + 'var foo = 42;', |
| 39 | + 'foo;' |
| 40 | + ].join('\n')); |
| 41 | + expect(astNodesAreEquivalent( |
| 42 | + resolveToValue(path).node, |
| 43 | + builders.literal(42) |
| 44 | + )).toBe(true); |
| 45 | + }); |
| 46 | + |
| 47 | + it('resolves object destructuring', () => { |
| 48 | + var path = parse([ |
| 49 | + 'var {foo: {bar: baz}} = bar;', |
| 50 | + 'baz;' |
| 51 | + ].join('\n')); |
| 52 | + |
| 53 | + // Node should be equal to bar.foo.bar |
| 54 | + expect(astNodesAreEquivalent( |
| 55 | + resolveToValue(path).node, |
| 56 | + builders.memberExpression( |
| 57 | + builders.memberExpression( |
| 58 | + builders.identifier('bar'), |
| 59 | + builders.identifier('foo') |
| 60 | + ), |
| 61 | + builders.identifier('bar') |
| 62 | + ) |
| 63 | + )).toBe(true); |
| 64 | + }); |
| 65 | + |
| 66 | + it('handles SpreadProperties properly', () => { |
| 67 | + var path = parse([ |
| 68 | + 'var {foo: {bar}, ...baz} = bar;', |
| 69 | + 'baz;' |
| 70 | + ].join('\n')); |
| 71 | + |
| 72 | + expect(astNodesAreEquivalent( |
| 73 | + resolveToValue(path).node, |
| 74 | + path.node |
| 75 | + )).toBe(true); |
| 76 | + }); |
| 77 | + |
| 78 | + it('returns the original path if it cannot be resolved', () => { |
| 79 | + var path = parse([ |
| 80 | + 'function foo() {}', |
| 81 | + 'foo()' |
| 82 | + ].join('\n')); |
| 83 | + |
| 84 | + expect(astNodesAreEquivalent( |
| 85 | + resolveToValue(path).node, |
| 86 | + path.node |
| 87 | + )).toBe(true); |
| 88 | + }); |
| 89 | +}); |
0 commit comments