|
5 | 5 | import { createWorkspace } from '@ngrx/schematics-core/testing';
|
6 | 6 | import { tags } from '@angular-devkit/core';
|
7 | 7 | import * as path from 'path';
|
| 8 | +import { LogEntry } from '@angular-devkit/core/src/logger'; |
8 | 9 |
|
9 | 10 | describe('ComponentStore Migration to 18.0.0-beta', () => {
|
10 | 11 | const collectionPath = path.join(__dirname, '../migration.json');
|
@@ -117,6 +118,100 @@ export class MyStore extends ComponentStore {
|
117 | 118 | });
|
118 | 119 | });
|
119 | 120 |
|
| 121 | + it('should work with prior import from same namespace', async () => { |
| 122 | + const input = tags.stripIndent` |
| 123 | +import { ComponentStore, provideComponentStore } from '@ngrx/component-store'; |
| 124 | +import { tapResponse } from '@ngrx/component-store'; |
| 125 | +
|
| 126 | +export class MyStore extends ComponentStore {} |
| 127 | + `; |
| 128 | + const output = tags.stripIndent` |
| 129 | +import { ComponentStore, provideComponentStore } from '@ngrx/component-store'; |
| 130 | +import { tapResponse } from '@ngrx/operators'; |
| 131 | +
|
| 132 | +export class MyStore extends ComponentStore {} |
| 133 | + `; |
| 134 | + await verifySchematic(input, output); |
| 135 | + }); |
| 136 | + |
| 137 | + it('should operate on multiple files', async () => { |
| 138 | + const inputMainOne = tags.stripIndent` |
| 139 | +import { ComponentStore, tapResponse } from '@ngrx/component-store'; |
| 140 | +import { concatLatestFrom } from '@ngrx/operators'; |
| 141 | +
|
| 142 | +@Injectable() |
| 143 | +export class MyStore extends ComponentStore { |
| 144 | +
|
| 145 | +} |
| 146 | +`; |
| 147 | + |
| 148 | + const outputMainOne = tags.stripIndent` |
| 149 | +import { ComponentStore } from '@ngrx/component-store'; |
| 150 | +import { concatLatestFrom, tapResponse } from '@ngrx/operators'; |
| 151 | +
|
| 152 | +@Injectable() |
| 153 | +export class MyStore extends ComponentStore { |
| 154 | +
|
| 155 | +} |
| 156 | +`; |
| 157 | + |
| 158 | + const inputMainTwo = tags.stripIndent` |
| 159 | +import { tapResponse } from "@ngrx/component-store"; |
| 160 | +
|
| 161 | +@Injectable() |
| 162 | +export class MyStore extends ComponentStore { |
| 163 | +
|
| 164 | +} |
| 165 | + `; |
| 166 | + const outputMainTwo = tags.stripIndent` |
| 167 | +import { tapResponse } from '@ngrx/operators'; |
| 168 | +
|
| 169 | +@Injectable() |
| 170 | +export class MyStore extends ComponentStore { |
| 171 | +
|
| 172 | +} |
| 173 | +`; |
| 174 | + appTree.create('mainOne.ts', inputMainOne); |
| 175 | + appTree.create('mainTwo.ts', inputMainTwo); |
| 176 | + |
| 177 | + const tree = await schematicRunner.runSchematic( |
| 178 | + `ngrx-component-store-migration-18-beta`, |
| 179 | + {}, |
| 180 | + appTree |
| 181 | + ); |
| 182 | + |
| 183 | + const actualMainOne = tree.readContent('mainOne.ts'); |
| 184 | + const actualMainTwo = tree.readContent('mainTwo.ts'); |
| 185 | + |
| 186 | + expect(actualMainOne).toBe(outputMainOne); |
| 187 | + expect(actualMainTwo).toBe(outputMainTwo); |
| 188 | + }); |
| 189 | + |
| 190 | + it('should report a warning on multiple imports of tapResponse', async () => { |
| 191 | + const input = tags.stripIndent` |
| 192 | +import { tapResponse } from '@ngrx/component-store'; |
| 193 | +import { tapResponse, ComponentStore } from '@ngrx/component-store'; |
| 194 | +
|
| 195 | +class SomeEffects {} |
| 196 | + `; |
| 197 | + |
| 198 | + appTree.create('main.ts', input); |
| 199 | + const logEntries: LogEntry[] = []; |
| 200 | + schematicRunner.logger.subscribe((logEntry) => logEntries.push(logEntry)); |
| 201 | + await schematicRunner.runSchematic( |
| 202 | + `ngrx-component-store-migration-18-beta`, |
| 203 | + {}, |
| 204 | + appTree |
| 205 | + ); |
| 206 | + |
| 207 | + expect(logEntries).toHaveLength(1); |
| 208 | + expect(logEntries[0]).toMatchObject({ |
| 209 | + message: |
| 210 | + '[@ngrx/component-store] Skipping because of multiple `tapResponse` imports', |
| 211 | + level: 'info', |
| 212 | + }); |
| 213 | + }); |
| 214 | + |
120 | 215 | it('should add @ngrx/operators if they are missing', async () => {
|
121 | 216 | const originalPackageJson = JSON.parse(
|
122 | 217 | appTree.readContent('/package.json')
|
|
0 commit comments