1
- import React from " react" ;
2
- import { expect } from " chai" ;
3
- import sinon from " sinon" ;
4
- import { configure , mount } from " enzyme" ;
5
- import Adapter from " enzyme-adapter-react-16" ;
6
- import toJson from " enzyme-to-json" ;
7
- import { Plot } from " sigplot" ;
8
- import { HrefLayer } from " ../src/index.js" ;
1
+ import React from ' react' ;
2
+ import { expect } from ' chai' ;
3
+ import sinon from ' sinon' ;
4
+ import { configure , mount } from ' enzyme' ;
5
+ import Adapter from ' enzyme-adapter-react-16' ;
6
+ import toJson from ' enzyme-to-json' ;
7
+ import { Plot } from ' sigplot' ;
8
+ import { HrefLayer } from ' ../src/index.js' ;
9
9
10
10
configure ( { adapter : new Adapter ( ) } ) ;
11
11
12
12
window . alert = ( msg ) => {
13
13
console . log ( msg ) ;
14
14
} ;
15
15
16
- describe ( " <HrefLayer />" , ( ) => {
16
+ describe ( ' <HrefLayer />' , ( ) => {
17
17
beforeEach ( ( ) => {
18
- sinon . spy ( Plot . prototype , " deoverlay" ) ;
19
- sinon . spy ( Plot . prototype , " overlay_href" ) ;
20
- sinon . spy ( Plot . prototype , " change_settings" ) ;
18
+ sinon . spy ( Plot . prototype , ' deoverlay' ) ;
19
+ sinon . spy ( Plot . prototype , ' overlay_href' ) ;
20
+ sinon . spy ( Plot . prototype , ' change_settings' ) ;
21
21
} ) ;
22
22
23
23
afterEach ( ( ) => {
@@ -26,76 +26,76 @@ describe("<HrefLayer />", () => {
26
26
Plot . prototype . change_settings . restore ( ) ;
27
27
} ) ;
28
28
29
- it ( " reloads plot on href prop change" , ( ) => {
30
- const element = global . document . createElement ( " div" ) ;
29
+ it ( ' reloads plot on href prop change' , ( ) => {
30
+ const element = global . document . createElement ( ' div' ) ;
31
31
const context = { plot : new Plot ( element , { } ) } ;
32
- const hrefOne = "" ;
32
+ const hrefOne = '' ;
33
33
const component = mount ( < HrefLayer href = { hrefOne } /> , { context } ) ;
34
34
35
35
expect ( component . props ( ) . href ) . to . equal ( hrefOne ) ;
36
36
expect ( component . instance ( ) . plot ) . to . not . be . undefined ;
37
- expect ( Plot . prototype . deoverlay ) . to . have . property ( " callCount" , 0 ) ;
38
- expect ( Plot . prototype . overlay_href ) . to . have . property ( " callCount" , 1 ) ;
37
+ expect ( Plot . prototype . deoverlay ) . to . have . property ( ' callCount' , 0 ) ;
38
+ expect ( Plot . prototype . overlay_href ) . to . have . property ( ' callCount' , 1 ) ;
39
39
expect ( Plot . prototype . overlay_href . getCall ( 0 ) . args ) . to . have . length ( 3 ) ;
40
40
expect ( Plot . prototype . overlay_href . getCall ( 0 ) . args [ 0 ] ) . to . equal ( hrefOne ) ;
41
41
42
- const hrefTwo = " dat/penny.prm" ;
42
+ const hrefTwo = ' dat/penny.prm' ;
43
43
component . setProps ( { href : hrefTwo } ) ;
44
44
expect ( component . props ( ) . href ) . to . equal ( hrefTwo ) ;
45
45
expect ( component . instance ( ) . plot ) . to . not . be . undefined ;
46
- expect ( Plot . prototype . deoverlay ) . to . have . property ( " callCount" , 1 ) ;
46
+ expect ( Plot . prototype . deoverlay ) . to . have . property ( ' callCount' , 1 ) ;
47
47
expect ( Plot . prototype . deoverlay . getCall ( 0 ) . args ) . to . not . be . empty ;
48
- expect ( Plot . prototype . overlay_href ) . to . have . property ( " callCount" , 2 ) ;
48
+ expect ( Plot . prototype . overlay_href ) . to . have . property ( ' callCount' , 2 ) ;
49
49
expect ( Plot . prototype . overlay_href . getCall ( 1 ) . args ) . to . have . length ( 3 ) ;
50
50
expect ( Plot . prototype . overlay_href . getCall ( 1 ) . args [ 0 ] ) . to . equal ( hrefTwo ) ;
51
51
} ) ;
52
52
53
53
it ( "doesn't do anything when props change, but stay the same" , ( ) => {
54
- const element = global . document . createElement ( " div" ) ;
54
+ const element = global . document . createElement ( ' div' ) ;
55
55
const context = { plot : new Plot ( element , { } ) } ;
56
- const hrefOne = " dat/penny.prm" ;
56
+ const hrefOne = ' dat/penny.prm' ;
57
57
const options = { } ;
58
58
const component = mount ( < HrefLayer href = { hrefOne } options = { options } /> , {
59
59
context,
60
60
} ) ;
61
- expect ( Plot . prototype . deoverlay ) . to . have . property ( " callCount" , 0 ) ;
62
- expect ( Plot . prototype . overlay_href ) . to . have . property ( " callCount" , 1 ) ;
63
- expect ( Plot . prototype . change_settings ) . to . have . property ( " callCount" , 1 ) ;
61
+ expect ( Plot . prototype . deoverlay ) . to . have . property ( ' callCount' , 0 ) ;
62
+ expect ( Plot . prototype . overlay_href ) . to . have . property ( ' callCount' , 1 ) ;
63
+ expect ( Plot . prototype . change_settings ) . to . have . property ( ' callCount' , 1 ) ;
64
64
65
65
component . setProps ( { href : hrefOne , options : options } ) ;
66
- expect ( Plot . prototype . deoverlay ) . to . have . property ( " callCount" , 0 ) ;
67
- expect ( Plot . prototype . overlay_href ) . to . have . property ( " callCount" , 1 ) ;
68
- expect ( Plot . prototype . change_settings ) . to . have . property ( " callCount" , 1 ) ;
66
+ expect ( Plot . prototype . deoverlay ) . to . have . property ( ' callCount' , 0 ) ;
67
+ expect ( Plot . prototype . overlay_href ) . to . have . property ( ' callCount' , 1 ) ;
68
+ expect ( Plot . prototype . change_settings ) . to . have . property ( ' callCount' , 1 ) ;
69
69
} ) ;
70
70
71
- it ( " changes settings on options prop change" , ( ) => {
72
- const element = global . document . createElement ( " div" ) ;
71
+ it ( ' changes settings on options prop change' , ( ) => {
72
+ const element = global . document . createElement ( ' div' ) ;
73
73
const context = { plot : new Plot ( element , { } ) } ;
74
- const hrefOne = " dat/penny.prm" ;
74
+ const hrefOne = ' dat/penny.prm' ;
75
75
76
- sinon . spy ( Plot . prototype , " overlay_bluefile" ) ;
76
+ sinon . spy ( Plot . prototype , ' overlay_bluefile' ) ;
77
77
78
78
const component = mount ( < HrefLayer href = { hrefOne } /> , { context } ) ;
79
79
80
80
expect ( component . props ( ) . href ) . to . equal ( hrefOne ) ;
81
81
expect ( component . instance ( ) . plot ) . to . not . be . undefined ;
82
- expect ( Plot . prototype . overlay_bluefile ) . to . have . property ( " callCount" , 1 ) ;
82
+ expect ( Plot . prototype . overlay_bluefile ) . to . have . property ( ' callCount' , 1 ) ;
83
83
expect ( component . instance ( ) . layer ) . to . equal ( 0 ) ;
84
- expect ( Plot . prototype . deoverlay ) . to . have . property ( " callCount" , 0 ) ;
85
- expect ( Plot . prototype . overlay_href ) . to . have . property ( " callCount" , 1 ) ;
84
+ expect ( Plot . prototype . deoverlay ) . to . have . property ( ' callCount' , 0 ) ;
85
+ expect ( Plot . prototype . overlay_href ) . to . have . property ( ' callCount' , 1 ) ;
86
86
expect ( Plot . prototype . overlay_href . getCall ( 0 ) . args ) . to . have . length ( 3 ) ;
87
87
expect ( Plot . prototype . overlay_href . getCall ( 0 ) . args [ 0 ] ) . to . equal ( hrefOne ) ;
88
88
expect ( component . instance ( ) . plot . _Gx . lyr ) . to . have . lengthOf ( 1 ) ;
89
89
expect ( component . instance ( ) . plot . _Gx . lyr [ 0 ] . drawmode ) . to . be . undefined ;
90
90
91
91
const options = {
92
- drawmode : " righttoleft" ,
92
+ drawmode : ' righttoleft' ,
93
93
} ;
94
94
component . setProps ( { options : options } ) ;
95
95
expect ( component . props ( ) . href ) . to . equal ( hrefOne ) ;
96
96
expect ( component . instance ( ) . plot ) . to . not . be . undefined ;
97
- expect ( Plot . prototype . deoverlay ) . to . have . property ( " callCount" , 0 ) ;
98
- expect ( Plot . prototype . overlay_href ) . to . have . property ( " callCount" , 1 ) ;
97
+ expect ( Plot . prototype . deoverlay ) . to . have . property ( ' callCount' , 0 ) ;
98
+ expect ( Plot . prototype . overlay_href ) . to . have . property ( ' callCount' , 1 ) ;
99
99
expect ( Plot . prototype . overlay_href . getCall ( 0 ) . args ) . to . have . length ( 3 ) ;
100
100
expect ( Plot . prototype . overlay_href . getCall ( 0 ) . args [ 0 ] ) . to . equal ( hrefOne ) ;
101
101
expect ( component . instance ( ) . plot . _Gx . lyr ) . to . have . lengthOf ( 1 ) ;
0 commit comments