summaryrefslogtreecommitdiffstats
path: root/gui-clamp/ui-react/src/components/dialogs/Policy/__snapshots__/PolicyToscaFileSelector.test.js.snap
diff options
context:
space:
mode:
authorbrunomilitzer <bruno.militzer@est.tech>2022-02-03 09:08:47 +0000
committerbrunomilitzer <bruno.militzer@est.tech>2022-02-04 11:02:15 +0000
commitc3ee2020d0bfd48c9b2a687d0f80e67190edb5d4 (patch)
tree076a5f672e62d696e468f888ae61b549688a6824 /gui-clamp/ui-react/src/components/dialogs/Policy/__snapshots__/PolicyToscaFileSelector.test.js.snap
parentd211be2cbad3ae4dea9dc90dcac80cccd9a510ab (diff)
Added Policy Jest Tests
Added more tests to increase overall coverage Issue-ID: POLICY-3899 Change-Id: I97e7954d42199145948f2ac2738a0ceaa7e6a44f Signed-off-by: brunomilitzer <bruno.militzer@est.tech>
Diffstat (limited to 'gui-clamp/ui-react/src/components/dialogs/Policy/__snapshots__/PolicyToscaFileSelector.test.js.snap')
-rw-r--r--gui-clamp/ui-react/src/components/dialogs/Policy/__snapshots__/PolicyToscaFileSelector.test.js.snap80
1 files changed, 80 insertions, 0 deletions
diff --git a/gui-clamp/ui-react/src/components/dialogs/Policy/__snapshots__/PolicyToscaFileSelector.test.js.snap b/gui-clamp/ui-react/src/components/dialogs/Policy/__snapshots__/PolicyToscaFileSelector.test.js.snap
new file mode 100644
index 0000000..10a5559
--- /dev/null
+++ b/gui-clamp/ui-react/src/components/dialogs/Policy/__snapshots__/PolicyToscaFileSelector.test.js.snap
@@ -0,0 +1,80 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Verify PolicyToscaFileSelector renders correctly 1`] = `
+<Styled(Modal)
+ backdrop="static"
+ keyboard={false}
+ onHide={[Function]}
+ size="lg"
+>
+ <ModalHeader
+ closeButton={true}
+ closeLabel="Close"
+ >
+ <ModalTitle>
+ Create New Policy Tosca Model
+ </ModalTitle>
+ </ModalHeader>
+ <ModalBody>
+ <FormGroup
+ as={
+ Object {
+ "$$typeof": Symbol(react.forward_ref),
+ "defaultProps": Object {
+ "noGutters": false,
+ },
+ "render": [Function],
+ }
+ }
+ controlId="formPlaintextEmail"
+ >
+ <Col
+ sm="10"
+ >
+ <input
+ accept=".yaml,.yml"
+ id="fileUploadButton"
+ multiple={true}
+ onChange={[Function]}
+ style={
+ Object {
+ "display": "none",
+ }
+ }
+ type="file"
+ />
+ <label
+ htmlFor="fileUploadButton"
+ >
+ <WithStyles(ForwardRef(Button))
+ color="primary"
+ component="span"
+ startIcon={
+ <WithStyles(ForwardRef(SvgIcon))
+ fontSize="small"
+ >
+ <Memo />
+ </WithStyles(ForwardRef(SvgIcon))>
+ }
+ variant="contained"
+ >
+ Upload Files
+ </WithStyles(ForwardRef(Button))>
+ <p>
+ (Only YAML files are supported)
+ </p>
+ </label>
+ <styled.div />
+ </Col>
+ </FormGroup>
+ </ModalBody>
+ <ModalFooter>
+ <WithStyles(ForwardRef(Button))
+ onClick={[Function]}
+ variant="secondary"
+ >
+ Close
+ </WithStyles(ForwardRef(Button))>
+ </ModalFooter>
+</Styled(Modal)>
+`;