@@ -4,8 +4,10 @@ import { SymbolComponent } from "./symbol";
4
4
import { DType } from "../../../types/dtypes" ;
5
5
6
6
const fakeValue = new DType ( { stringValue : "Fake value" } ) ;
7
+ const stringValue = new DType ( { stringValue : "1.54" } ) ;
8
+ const arrayValue = new DType ( { arrayValue : Float64Array . from ( [ 2 , 0 ] ) } ) ;
7
9
8
- describe ( "<Symbol />" , ( ) : void => {
10
+ describe ( "<Symbol /> from .opi file " , ( ) : void => {
9
11
test ( "label is not shown if showLabel is false" , ( ) : void => {
10
12
const symbolProps = {
11
13
showBooleanLabel : false ,
@@ -40,4 +42,120 @@ describe("<Symbol />", (): void => {
40
42
41
43
expect ( asFragment ( ) ) . toMatchSnapshot ( ) ;
42
44
} ) ;
45
+
46
+ test ( "matches snapshot (with rotation)" , ( ) : void => {
47
+ const symbolProps = {
48
+ showBooleanLabel : false ,
49
+ imageFile : "img 1.gif" ,
50
+ value : fakeValue ,
51
+ rotation : 45
52
+ } ;
53
+
54
+ const { asFragment } = render (
55
+ < SymbolComponent { ...( symbolProps as any ) } />
56
+ ) ;
57
+
58
+ expect ( asFragment ( ) ) . toMatchSnapshot ( ) ;
59
+ } ) ;
60
+ } ) ;
61
+
62
+ describe ( "<Symbol /> from .bob file" , ( ) : void => {
63
+ test ( "index is not shown if showIndex is false" , ( ) : void => {
64
+ const symbolProps = {
65
+ symbols : [ "img 1.gif" ] ,
66
+ value : new DType ( { stringValue : "0" } )
67
+ } ;
68
+
69
+ render ( < SymbolComponent { ...( symbolProps as any ) } /> ) ;
70
+
71
+ expect ( screen . queryByText ( "0" ) ) . not . toBeInTheDocument ( ) ;
72
+ } ) ;
73
+
74
+ test ( "index is added" , ( ) : void => {
75
+ const symbolProps = {
76
+ showIndex : true ,
77
+ symbols : [ "img 1.gif" , "img 2.png" ] ,
78
+ value : stringValue
79
+ } ;
80
+ render ( < SymbolComponent { ...( symbolProps as any ) } /> ) ;
81
+
82
+ expect ( screen . getByText ( "1" ) ) . toBeInTheDocument ( ) ;
83
+ } ) ;
84
+
85
+ test ( "use initialIndex if no props value provided" , ( ) : void => {
86
+ const symbolProps = {
87
+ showIndex : true ,
88
+ initialIndex : 2 ,
89
+ symbols : [ "img 1.gif" , "img 2.png" , "img 3.svg" ] ,
90
+ value : undefined
91
+ } ;
92
+
93
+ render ( < SymbolComponent { ...( symbolProps as any ) } /> ) ;
94
+
95
+ expect ( screen . getByText ( "2" ) ) . toBeInTheDocument ( ) ;
96
+ } ) ;
97
+
98
+ test ( "use arrayIndex to find index if value is an array" , ( ) : void => {
99
+ const symbolProps = {
100
+ arrayIndex : 0 ,
101
+ showIndex : true ,
102
+ symbols : [ "img 1.gif" , "img 2.png" , "img 3.svg" ] ,
103
+ value : arrayValue
104
+ } ;
105
+ render ( < SymbolComponent { ...( symbolProps as any ) } /> ) ;
106
+
107
+ expect ( screen . getByText ( "2" ) ) . toBeInTheDocument ( ) ;
108
+ } ) ;
109
+
110
+ test ( "matches snapshot (without index)" , ( ) : void => {
111
+ const symbolProps = {
112
+ symbols : [ "img 1.gif" ] ,
113
+ value : new DType ( { stringValue : "0" } )
114
+ } ;
115
+
116
+ const { asFragment } = render (
117
+ < SymbolComponent { ...( symbolProps as any ) } />
118
+ ) ;
119
+
120
+ expect ( asFragment ( ) ) . toMatchSnapshot ( ) ;
121
+ } ) ;
122
+
123
+ test ( "matches snapshot (with index)" , ( ) : void => {
124
+ const symbolProps = {
125
+ symbols : [ "img 1.gif" , "img 2.png" , "img 3.svg" ] ,
126
+ value : new DType ( { stringValue : "2" } )
127
+ } ;
128
+
129
+ const { asFragment } = render (
130
+ < SymbolComponent { ...( symbolProps as any ) } />
131
+ ) ;
132
+
133
+ expect ( asFragment ( ) ) . toMatchSnapshot ( ) ;
134
+ } ) ;
135
+
136
+ test ( "matches snapshot (using fallback symbol)" , ( ) : void => {
137
+ const symbolProps = {
138
+ symbols : [ "img 1.gif" ] ,
139
+ value : new DType ( { doubleValue : 1 } )
140
+ } ;
141
+ const { asFragment } = render (
142
+ < SymbolComponent { ...( symbolProps as any ) } />
143
+ ) ;
144
+
145
+ expect ( asFragment ( ) ) . toMatchSnapshot ( ) ;
146
+ } ) ;
147
+
148
+ test ( "matches snapshot (with rotation)" , ( ) : void => {
149
+ const symbolProps = {
150
+ symbols : [ "img 1.gif" ] ,
151
+ value : new DType ( { stringValue : "0" } ) ,
152
+ rotation : 45
153
+ } ;
154
+
155
+ const { asFragment } = render (
156
+ < SymbolComponent { ...( symbolProps as any ) } />
157
+ ) ;
158
+
159
+ expect ( asFragment ( ) ) . toMatchSnapshot ( ) ;
160
+ } ) ;
43
161
} ) ;
0 commit comments