123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554 |
- import React, { useEffect, useRef, useState } from 'react';
- import { Form, Row, Col, Card, Modal, Input, Select, Upload, Button, message } from 'antd';
- import { connect } from 'umi';
- import styles from './index.less';
- import {
- ForkOutlined,
- PlusOutlined,
- ExclamationCircleFilled,
- UploadOutlined,
- EditOutlined,
- EyeOutlined,
- } from '@ant-design/icons';
- import { recurrent, severity, bug_categories } from './const';
- const formItemLayout = {
- labelCol: {
- span: 5,
- },
- wrapperCol: {
- span: 19,
- },
- };
- const Step2 = (props) => {
- const [reportForm] = Form.useForm();
- const [addCaseForm] = Form.useForm();
- const [addBugForm] = Form.useForm();
- const { data, dispatch, reportCommonInfo, testCaseList, caseBugList, categories } = props;
- const [showTaskRecommendModal, setTaskRecommendModal] = useState(false);
- const [showAddTestCaseModal, setAddTestCaseModal] = useState(false);
- const [showAddBugModal, setAddTestBugModal] = useState(false);
- const currentTestCaseRef = useRef({});
- const [isAddCaseStatus, setIsAddCaseStatus] = useState(true);
- // const [currActiveTestCase, setCurrActiveTestCase] = useState({});
- const [page2List, setPage2List] = useState([]);
- const [page3List, setPage3List] = useState([]);
- if (!data) {
- return null;
- }
- const handleAddOrEditTestCase = () => {
- addCaseForm.validateFields().then((res) => {
- let formData = new FormData();
- // formData.append("id", values.reportName);
- formData.append('report_id', reportCommonInfo.id);
- formData.append('name', res.name);
- formData.append('front', res.front);
- formData.append('behind', res.behind);
- formData.append('description', res.result);
- if (!isAddCaseStatus) {
- //处理编辑用例
- formData.append('id', currentTestCaseRef.current.id);
- dispatch({
- type: 'editReport/updateTestCase',
- payload: {
- formData,
- report_id: reportCommonInfo.id,
- },
- }).then((res) => {
- if (res && res.status === 200) {
- message.success('修改成功!');
- }
- });
- } else {
- //处理添加用例
- dispatch({
- type: 'editReport/createTestCase',
- payload: {
- formData,
- report_id: reportCommonInfo.id,
- },
- }).then((res) => {
- if (res && res.id) {
- message.success('添加成功!');
- }
- });
- }
- setAddTestCaseModal(false);
- });
- };
- const handleAddBug = () => {
- addBugForm.validateFields().then((res) => {
- let formData = new FormData();
- formData.append('report_id', reportCommonInfo.id);
- formData.append('title', res.title);
- formData.append('description', res.description);
- formData.append('bug_category', res.bug_category);
- formData.append('severity', res.severity);
- formData.append('recurrent', res.recurrent);
- formData.append('parent', null);
- formData.append('useCase', currentTestCaseRef.current.id);
- formData.append('case_id', '1718');
- formData.append('case_take_id', '1718-1718');
- formData.append('worker_id', '1');
- formData.append('page', `${res.page1}-${res.page2}-${res.page3}`);
- //新建bug
- dispatch({
- type:'editReport/createCaseBug',
- payload: {
- formData,
- useCase:currentTestCaseRef.current.id
- }
- }).then(res=>{
- console.log(res.status)
- })
- });
- };
- const handleClickTestCase = (caseItem) => {
- // setCurrActiveTestCase(caseItem);
- currentTestCaseRef.current = caseItem;
- dispatch({
- type: 'editReport/getCaseBugList',
- payload: caseItem.id,
- })
- };
- const handleEditTestCase = (item) => {
- setIsAddCaseStatus(false);
- currentTestCaseRef.current = item;
- addCaseForm.setFieldsValue(currentTestCaseRef.current);
- setAddTestCaseModal(true);
- };
- const handleClickAddCase = () => {
- addCaseForm.resetFields();
- setAddTestCaseModal(true);
- };
- const handleClickAddBug = () => {
- //current目前只在点击edit cease的时候会有用
- addBugForm.resetFields();
- setAddTestBugModal(true);
- };
- const handleSelectPage1 = (val) =>{
- let item = categories.find(x=>x.item === val);
- setPage2List(item.children)
- }
- const handleSelectPage2 = (val) =>{
- let item = page2List.find(x=>x.item === val);
- setPage3List(item.children)
- }
- useEffect(() => {
- //判断是否已经有报告
- dispatch({
- type: 'editReport/getReportInfo',
- payload: {
- case_take_id: '1718-1718',
- worker_id: 1,
- },
- }).then((res) => {
- // console.log(res)
- // console.log(reportCommonInfo)
- //有报告,获取对应信息。没有就直接转去了第一步
- dispatch({
- type: 'editReport/getTestCaseList',
- payload: { report_id: reportCommonInfo.id },
- }).then((res)=>{
- currentTestCaseRef.current = res;
- // setCurrActiveTestCase(res);
- });
- dispatch({
- type: 'editReport/getCategories',
- payload: { examId: 1945 },
- });
- });
- }, [dispatch,reportCommonInfo.id]);
- return (
- <div>
- <Form
- {...formItemLayout}
- form={reportForm}
- layout="horizontal"
- className={styles.stepForm}
- hideRequiredMark
- initialValues={data}
- >
- <Row gutter={10}>
- <Col span={5}>
- <Form.Item label="创建日期" rules={[{ required: true, message: '请输入报告名称' }]}>
- {'2021.4.12'}
- </Form.Item>
- </Col>
- <Col span={5}>
- <Form.Item label="报告名称" rules={[{ required: true, message: '请输入报告名称' }]}>
- {reportCommonInfo.name}
- </Form.Item>
- </Col>
- <Col span={5}>
- <Form.Item label="设备名称" required>
- {reportCommonInfo.device_brand}
- </Form.Item>
- </Col>
- <Col span={5}>
- <Form.Item label="设备品牌" required>
- {reportCommonInfo.device_model}
- </Form.Item>
- </Col>
- <Col span={4}>
- <Form.Item label="操作系统" required>
- {reportCommonInfo.device_os}
- </Form.Item>
- </Col>
- </Row>
- </Form>
- <Card>
- <div className={styles.reportContainer}>
- <Row gutter={10}>
- <Col span={8}>
- <div>
- <Row gutter={10} style={{ marginBottom: 10 }}>
- <Col span={20}><h3>测试用例列表</h3></Col>
- <Col span={4}>
- <Button size="small" onClick={() => {
- handleClickAddCase();
- }}>
- <PlusOutlined className={styles.addIcon} />
- 用例
- </Button>
- </Col>
- </Row>
- </div>
- <div className={styles.testCaseList}>
- {testCaseList && testCaseList.map((item) => {
- return (
- <div
- className={`${styles.testCaseItem} ${currentTestCaseRef.current.id === item.id ? styles.activeCase : ''}`}
- key={item.id}
- onClick={() => {
- handleClickTestCase(item);
- }}>
- <Row gutter={10}>
- <Col span={21}><p>{item.name}</p></Col>
- <Col span={3}>
- <EditOutlined className={styles.editTestBug}
- onClick={() => handleEditTestCase(item)} />
- </Col>
- </Row>
- </div>);
- })}
- </div>
- </Col>
- <Col span={16} style={{ paddingLeft: 20 }}>
- <Row gutter={10} style={{ marginBottom: 10 }}>
- <Col span={20}><h3>缺陷列表</h3></Col>
- <Col span={2}>
- <Button size="small" onClick={() => handleClickAddBug()}>
- <PlusOutlined className={styles.addIcon} />
- 缺陷
- </Button>
- </Col>
- <Col span={2}>
- <Button size="small" onClick={() => setTaskRecommendModal(true)}>
- <ForkOutlined className={styles.addIcon} />
- 推荐
- </Button>
- </Col>
- </Row>
- <div className={styles.testBugList}>
- {/*{console.log(props)}*/}
- {/*{console.log(props.caseBugList)}*/}
- {/*{console.log(props.caseBugList.length)}*/}
- {caseBugList && caseBugList.map((item) => {
- return (
- <div className={styles.testBugItem} key={item.detail.id}>
- <Row gutter={10}>
- <Col span={20}>
- <div><span className={styles.bugItemTitle}>Bug标题:</span>{item.detail.title}</div>
- <div><span className={styles.bugItemTitle}>复现程度:</span>{recurrent[item.detail.recurrent]}
- </div>
- <div><span className={styles.bugItemTitle}>严重程度:</span>{severity[item.detail.severity]}</div>
- <div><span
- className={styles.bugItemTitle}>缺陷分类:</span>{item.detail.bug_category}
- </div>
- </Col>
- <Col span={4}>
- <Button size='small' style={{ marginTop: 10 }}>
- <EyeOutlined />详情</Button>
- </Col>
- </Row>
- </div>
- );
- })}
- </div>
- </Col>
- </Row>
- </div>
- </Card>
- <Modal title={isAddCaseStatus ? '添加测试用例' : '编辑测试用例'} width={720}
- visible={showAddTestCaseModal}
- forceRender={true}
- className="addModal"
- footer={[
- <Button key='submit' type="primary" htmlType="submit" onClick={handleAddOrEditTestCase}>确定</Button>,
- <Button key='cancel' htmlType="button" style={{ marginLeft: '10px' }}
- onClick={() => {
- setAddTestCaseModal(false);
- }}>取消</Button>]}
- onCancel={() => {
- setAddTestCaseModal(false);
- }}
- >
- <ExclamationCircleFilled className={styles.addModalInfo} />为了评分准确,请勿提交重复测试用例
- <Form
- {...formItemLayout}
- form={addCaseForm}
- layout="horizontal"
- className={styles.stepForm}
- >
- <Form.Item
- label="用例名称"
- name="name"
- rules={[
- {
- required: true,
- message: '请输入用例名称!',
- },
- ]}
- >
- <Input />
- </Form.Item>
- <Form.Item
- label="前置条件"
- name="front"
- rules={[
- {
- required: true,
- message: '请输入前置条件!',
- },
- ]}
- >
- <Input.TextArea autoSize={{ minRows: 3, maxRows: 999 }} />
- </Form.Item>
- <Form.Item
- label="测试步骤"
- name="behind"
- rules={[
- {
- required: true,
- message: '请输入测试步骤!',
- },
- ]}
- >
- <Input.TextArea autoSize={{ minRows: 3, maxRows: 999 }} />
- </Form.Item>
- <Form.Item
- label="预期结果"
- name="result"
- rules={[
- {
- required: true,
- message: '请输入预期结果!',
- },
- ]}
- >
- <Input.TextArea autoSize={{ minRows: 3, maxRows: 999 }} />
- </Form.Item>
- </Form>
- </Modal>
- <Modal title="添加用例缺陷" visible={showAddBugModal} width={720}
- forceRender={true}
- footer={[
- <Button key='submit' type="primary" htmlType="submit" onClick={handleAddBug}>确定</Button>,
- <Button key='cancel' htmlType="button" style={{ marginLeft: '10px' }}
- onClick={() => {
- setAddTestBugModal(false);
- }}>取消</Button>]}
- onCancel={() => {
- setAddTestBugModal(false);
- }}
- className={styles.bugForm}
- >
- <ExclamationCircleFilled className={styles.addModalInfo} />为了评分准确,请勿提交重复Bug
- <Form
- form={addBugForm}
- {...formItemLayout}
- layout="horizontal"
- className={styles.stepForm}
- >
- <Form.Item
- label="测试标题"
- name="title"
- rules={[
- {
- required: true,
- message: '请输入测试标题!',
- },
- ]}
- >
- <Input.TextArea autoSize={{ minRows: 1, maxRows: 999 }} />
- </Form.Item>
- <Form.Item
- label="题目描述"
- name="description"
- rules={[
- {
- required: true,
- message: '请输入题目描述!',
- },
- ]}
- >
- <Input.TextArea autoSize={{ minRows: 2, maxRows: 999 }} />
- </Form.Item>
- <Form.Item
- label="三级页面"
- name="pages"
- >
- <Row gutter={5} className={styles.pageSelect}>
- <Col span={8}>
- <Form.Item
- name="page1"
- rules={[
- {
- required: true,
- message: '请输入一级页面',
- },
- ]}
- >
- <Select onSelect={(val)=>{handleSelectPage1(val)}}>
- {categories.map((item) => {
- return <Select.Option value={item.item} key={item.item}>{item.item}
- </Select.Option>;
- })}
- </Select>
- </Form.Item>
- </Col>
- <Col span={8}>
- <Form.Item
- name="page2"
- rules={[
- {
- required: true,
- message: '请输入二级页面',
- },
- ]}
- >
- <Select disabled={!page2List.length}
- onSelect={(val)=>{handleSelectPage2(val)}}>
- {page2List.map((item)=>{
- return <Select.Option value={item.item} key={item.item}>{item.item}</Select.Option>
- })}
- </Select>
- </Form.Item>
- </Col>
- <Col span={8}>
- <Form.Item
- name="page3"
- rules={[
- {
- required: true,
- message: '请输入三级页面',
- },
- ]}
- >
- <Select disabled={!page3List.length}>
- {page3List.map((item)=>{
- return <Select.Option value={item.item} key={item.item}>{item.item}</Select.Option>
- })}
- </Select>
- </Form.Item>
- </Col>
- </Row>
- </Form.Item>
- <Form.Item
- label="漏洞分类"
- name="bug_category"
- rules={[
- {
- required: true,
- message: '请选择漏洞分类!',
- },
- ]}
- >
- <Select>
- {bug_categories.map((item) => {
- return <Select.Option value={item} key={item}>{item}</Select.Option>;
- })}
- </Select>
- </Form.Item>
- <Form.Item
- label="严重等级"
- name="severity"
- rules={[
- {
- required: true,
- message: '请选择严重等级!',
- },
- ]}
- >
- <Select>
- {severity.map((item) => {
- return <Select.Option value={item} key={item}>{item}</Select.Option>;
- })}
- </Select>
- </Form.Item>
- <Form.Item
- label="复现程度"
- name="recurrent"
- rules={[
- {
- required: true,
- message: '请选择复现程度!',
- },
- ]}
- >
- <Select>
- {recurrent.map((item) => {
- return <Select.Option value={item} key={item}>{item}</Select.Option>;
- })}
- </Select>
- </Form.Item>
- {/*<Form.Item*/}
- {/* label="上传截图"*/}
- {/* name="testName"*/}
- {/*>*/}
- {/* <Upload*/}
- {/* action="https://www.mocky.io/v2/5cc8019d300000980a055e76"*/}
- {/* listType="picture"*/}
- {/* >*/}
- {/* <Button icon={<UploadOutlined />}>Upload</Button>*/}
- {/* </Upload>*/}
- {/*</Form.Item>*/}
- </Form>
- </Modal>
- <Modal title="任务推荐" visible={showTaskRecommendModal} onOk={() => setTaskRecommendModal(false)}
- onCancel={() => setTaskRecommendModal(false)} className="addModal">
- <div>
- <div id="forceChart"></div>
- </div>
- </Modal>
- </div>
- );
- };
- export default connect(({ editReport, loading }) => ({
- submitting: loading.effects['editReport/submitStepForm'],
- data: editReport.step,
- reportCommonInfo: editReport.reportCommonInfo,
- testCaseList: editReport.testCaseList,
- caseBugList: editReport.caseBugList,
- categories: editReport.categories,
- }))(Step2);
|