aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/__tests__
diff options
context:
space:
mode:
authorMatthew Shao <me@matshao.com>2017-06-01 20:37:38 +0800
committerMatthew Shao <me@matshao.com>2017-06-01 20:37:38 +0800
commitef9ee67c19662b033581a70a0658348f50694813 (patch)
treea32b865e9d2b969aee8a0cc21137bec2b0ee7af6 /web/src/js/__tests__
parentde3042911a5a61a8b47fbd12ee0650e929a04315 (diff)
downloadmitmproxy-ef9ee67c19662b033581a70a0658348f50694813.tar.gz
mitmproxy-ef9ee67c19662b033581a70a0658348f50694813.tar.bz2
mitmproxy-ef9ee67c19662b033581a70a0658348f50694813.zip
[web] Add tests for js/components/ContentView/ContentViewOptions.jsx
Diffstat (limited to 'web/src/js/__tests__')
-rw-r--r--web/src/js/__tests__/components/ContentView/ContentViewOptionsSpec.js19
-rw-r--r--web/src/js/__tests__/components/ContentView/__snapshots__/ContentViewOptionsSpec.js.snap41
2 files changed, 60 insertions, 0 deletions
diff --git a/web/src/js/__tests__/components/ContentView/ContentViewOptionsSpec.js b/web/src/js/__tests__/components/ContentView/ContentViewOptionsSpec.js
new file mode 100644
index 00000000..0b1e8538
--- /dev/null
+++ b/web/src/js/__tests__/components/ContentView/ContentViewOptionsSpec.js
@@ -0,0 +1,19 @@
+import React from 'react'
+import renderer from 'react-test-renderer'
+import ContentViewOptions from '../../../components/ContentView/ContentViewOptions'
+import { Provider } from 'react-redux'
+import { TFlow, TStore } from '../../ducks/tutils'
+
+let tflow = new TFlow()
+
+describe('ContentViewOptions Component', () => {
+ let store = TStore()
+ it('should render correctly', () => {
+ let provider = renderer.create(
+ <Provider store={store}>
+ <ContentViewOptions flow={tflow} message={tflow.response}/>
+ </Provider>),
+ tree = provider.toJSON()
+ expect(tree).toMatchSnapshot()
+ })
+})
diff --git a/web/src/js/__tests__/components/ContentView/__snapshots__/ContentViewOptionsSpec.js.snap b/web/src/js/__tests__/components/ContentView/__snapshots__/ContentViewOptionsSpec.js.snap
new file mode 100644
index 00000000..e3561ec1
--- /dev/null
+++ b/web/src/js/__tests__/components/ContentView/__snapshots__/ContentViewOptionsSpec.js.snap
@@ -0,0 +1,41 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`ContentViewOptions Component should render correctly 1`] = `
+<div
+ className="view-options"
+>
+ <span>
+ <b>
+ View:
+ </b>
+ edit
+ </span>
+  
+ <a
+ className="btn btn-default btn-xs"
+ href="/flows/d91165be-ca1f-4612-88a9-c0f8696f3e29/response/content"
+ title="Download the content of the flow."
+ >
+ <i
+ className="fa fa-download"
+ />
+ </a>
+  
+ <a
+ className="btn btn-default btn-xs"
+ href="#"
+ onClick={[Function]}
+ title="Upload a file to replace the content."
+ >
+ <i
+ className="fa fa-fw fa-upload"
+ />
+ <input
+ className="hidden"
+ onChange={[Function]}
+ type="file"
+ />
+ </a>
+  
+</div>
+`;