@@ -7,13 +7,17 @@ import {DocViewer} from './doc-viewer';
7
7
import { DocViewerModule } from './doc-viewer-module' ;
8
8
import { ExampleViewer } from '../example-viewer/example-viewer' ;
9
9
import { MatTooltip } from '@angular/material/tooltip' ;
10
+ import { MatIconButton } from '@angular/material/button' ;
11
+ import { Clipboard } from '@angular/cdk/clipboard' ;
10
12
11
13
describe ( 'DocViewer' , ( ) => {
12
14
let http : HttpTestingController ;
15
+ const clipboardSpy = jasmine . createSpyObj < Clipboard > ( 'Clipboard' , [ 'copy' ] ) ;
13
16
14
17
beforeEach ( waitForAsync ( ( ) => {
15
18
TestBed . configureTestingModule ( {
16
19
imports : [ DocViewerModule , DocsAppTestingModule , DocViewerTestComponent ] ,
20
+ providers : [ { provide : Clipboard , useValue : clipboardSpy } ] ,
17
21
} ) . compileComponents ( ) ;
18
22
} ) ) ;
19
23
@@ -179,6 +183,27 @@ describe('DocViewer', () => {
179
183
expect ( deprecatedSymbol . query ( By . directive ( MatTooltip ) ) ) . toBeTruthy ( ) ;
180
184
} ) ;
181
185
186
+ it ( 'should show copy icon button for module imports' , ( ) => {
187
+ const fixture = TestBed . createComponent ( DocViewerTestComponent ) ;
188
+ fixture . componentInstance . documentUrl = `http://material.angular.io/copy-module-import.html` ;
189
+ fixture . detectChanges ( ) ;
190
+
191
+ const url = fixture . componentInstance . documentUrl ;
192
+ http . expectOne ( url ) . flush ( FAKE_DOCS [ url ] ) ;
193
+
194
+ const docViewer = fixture . debugElement . query ( By . directive ( DocViewer ) ) ;
195
+ expect ( docViewer ) . not . toBeNull ( ) ;
196
+
197
+ const iconButton = fixture . debugElement . query ( By . directive ( MatIconButton ) ) ;
198
+ // icon button for copying module import should exist
199
+ expect ( iconButton ) . toBeTruthy ( ) ;
200
+
201
+ // click on icon button to trigger copying the module import
202
+ iconButton . nativeNode . dispatchEvent ( new MouseEvent ( 'click' ) ) ;
203
+ fixture . detectChanges ( ) ;
204
+ expect ( clipboardSpy . copy ) . toHaveBeenCalled ( ) ;
205
+ } ) ;
206
+
182
207
// TODO(mmalerba): Add test that example-viewer is instantiated.
183
208
} ) ;
184
209
@@ -221,6 +246,17 @@ const FAKE_DOCS: {[key: string]: string} = {
221
246
222
247
<div class="docs-api-deprecated-marker"
223
248
deprecated-message="deprecated">Deprecated</div>` ,
249
+ 'http://material.angular.io/copy-module-import.html' : `<div class="docs-api-module">
250
+ <p class="docs-api-module-import">
251
+ <code>
252
+ import {MatIconModule} from '@angular/material/icon';
253
+ </code>
254
+ </p>
255
+
256
+ <div class="docs-api-module-import-button"
257
+ data-docs-api-module-import-button="import {MatIconModule} from '@angular/material/icon';">
258
+ </div>
259
+ </div>` ,
224
260
/* eslint-enable @typescript-eslint/naming-convention */
225
261
} ;
226
262
0 commit comments