UnitTest單元測試

unitTestBase類武契,其他test類集成Base類

import com.alibaba.fastjson.JSONObject;
import com.isstech.cay.model.result.ResultCode;
import com.isstech.cay.utils.AssertUtil;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;

import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;


@RunWith(SpringRunner.class)
@SpringBootTest
public class AnalysisApplicationTests {

    protected MockMvc mockMvc;

    @Autowired
    protected WebApplicationContext wac;

    @Before
    public void init() {
        System.out.println("開始測試-----------------");
        mockMvc = MockMvcBuilders.webAppContextSetup(wac).build();  //初始化MockMvc對象
    }

    @Test
    public void test() {
    }

    @After
    public void after() {
        System.out.println("測試結(jié)束-----------------");
    }

    /**
     * 添加
     *
     * @param url
     * @param entity
     * @throws Exception
     */
    public JSONObject testAdd(String url, Object entity) throws Exception {
        String requestJson = JSONObject.toJSONString(entity);
        String responseString = mockMvc.perform(post(url)
                .contentType(MediaType.APPLICATION_JSON).content(requestJson)).andDo(print())
                .andExpect(status().isOk()).andReturn().getResponse().getContentAsString();
        JSONObject jsonObject = JSONObject.parseObject(responseString);
        AssertUtil.isTrue(ResultCode.SUCCESS.code().equals(jsonObject.getInteger("status")), "添加失敗!");
        System.out.println(jsonObject.toJSONString());
        return jsonObject;
    }

    /**
     * 修改
     *
     * @param url
     * @param entity
     * @throws Exception
     */
    public JSONObject testUpdate(String url, Object entity) throws Exception {
        String requestJson = JSONObject.toJSONString(entity);
        String responseString = mockMvc.perform(post(url)
                .contentType(MediaType.APPLICATION_JSON).content(requestJson)).andDo(print())
                .andExpect(status().isOk()).andReturn().getResponse().getContentAsString();
        JSONObject jsonObject = JSONObject.parseObject(responseString);
        AssertUtil.isTrue(ResultCode.SUCCESS.code().equals(jsonObject.getInteger("status")), "修改失斖臁!");
        System.out.println(jsonObject.toJSONString());
        return jsonObject;
    }


    /**
     * 刪除
     *
     * @param url 刪除地址
     * @throws Exception
     */
    public JSONObject testDel(String url) throws Exception {
        String responseString = mockMvc.perform(delete(url)
                .contentType(MediaType.APPLICATION_JSON)).andDo(print())
                .andExpect(status().isOk()).andReturn().getResponse().getContentAsString();
        JSONObject jsonObject = JSONObject.parseObject(responseString);
        AssertUtil.isTrue(ResultCode.SUCCESS.code().equals(jsonObject.getInteger("status")), "刪除失斏静颉!");
        System.out.println(jsonObject.toJSONString());
        return jsonObject;
    }

    /**
     * 查詢
     *
     * @param url
     * @return
     * @throws Exception
     */
    public JSONObject testGet(String url) throws Exception {
        String responseString = mockMvc.perform(get(url)).andDo(print())
                .andExpect(status().isOk()).andReturn().getResponse().getContentAsString();
        JSONObject jsonObject = JSONObject.parseObject(responseString);
        AssertUtil.isTrue(ResultCode.SUCCESS.code().equals(jsonObject.getInteger("status")), "GET查詢失斠唷!");
        return jsonObject;
    }

    /**
     * 查詢
     *
     * @param url
     * @return
     * @throws Exception
     */
    public JSONObject testPost(String url, Object entity) throws Exception {
        String requestJson = JSONObject.toJSONString(entity);
        String responseString = mockMvc.perform(post(url)
                .contentType(MediaType.APPLICATION_JSON).content(requestJson)).andDo(print())
                .andExpect(status().isOk()).andReturn().getResponse().getContentAsString();
        JSONObject jsonObject = JSONObject.parseObject(responseString);
        AssertUtil.isTrue(ResultCode.SUCCESS.code().equals(jsonObject.getInteger("status")), "POST查詢失斪竞痢氢橙!");
        System.out.println(jsonObject.toJSONString());
        return jsonObject;
    }
}

api接口測試

import com.isstech.cay.model.BpSysNotice;
import com.isstech.cay.model.BpTodo;
import org.junit.Test;

/**
 * 待辦事項(xiàng)管理
 *
 * @author Colin.Ye
 * @version 1.0
 * @ClassName BpSysTodoTests
 * @date 2020/4/13
 **/
public class BpSysTodoTests extends AnalysisApplicationTests {

    private static final String REST = "/bp/todo/";

    /**
     * 新增通知
     */
    @Test
    @Transactional
    @Rollback
    public void add() throws Exception {
        super.testAdd(REST + "add", new BpTodo() {{
            // setId("5630e9f55cd94e8b878c6f4d672191ad");
            setTitle("測試待辦事項(xiàng)");
            setSysId("系統(tǒng)ID");
            setTodoType("待辦事項(xiàng)類型");
            setSysUrl("系統(tǒng)URL");
            setCreatorId("createId");
            setUpdateId("updateId");
        }});
    }

    /**
     * 修改通知
     */
    @Test
    @Transactional
    @Rollback
    public void update() throws Exception {
        super.testUpdate(REST + "update", new BpTodo() {{
            setId("5630e9f55cd94e8b878c6f4d672191ad");
            setTitle("測試待辦事項(xiàng)1");
            setSysId("系統(tǒng)ID1");
            setTodoType("待辦事項(xiàng)類型1");
            setSysUrl("系統(tǒng)URL1");
            setCreatorId("createId1");
            setUpdateId("updateId1");
        }});
    }

    /**
     * 刪除通知
     *
     * @throws Exception
     */
    @Test
    @Transactional
    @Rollback
    public void del() throws Exception {
        String id = "5630e9f55cd94e8b878c6f4d672191ad";
        super.testDel(REST + "delete/" + id);
    }

    /**
     * 根據(jù)ID查詢通知信息
     *
     * @throws Exception
     */
    @Test
    public void get() throws Exception {
        String id = "5630e9f55cd94e8b878c6f4d672191ad";
        super.testGet(REST + "get/" + id);
    }


    /**
     * 條件查詢應(yīng)用
     *
     * @throws Exception
     */
    @Test
    public void fetchAppList() throws Exception {
        super.testPost(REST + "list", new BpTodo() {{
            setTitle("測試待辦事項(xiàng)");
            setSysId("系統(tǒng)ID");
            setTodoType("待辦事項(xiàng)類型");
            setSysUrl("系統(tǒng)URL");
            setCreatorId("createId");
            setUpdateId("updateId");
        }});
    }

    /**
     * 條件查詢應(yīng)用-分頁
     *
     * @throws Exception
     */
    @Test
    public void fetchAppListPage() throws Exception {
        super.testPost(REST + "list/page", new BpSysNotice() {{
            setCurrentPage(1);
            setPageSize(2);
        }});
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市恬偷,隨后出現(xiàn)的幾起案子悍手,更是在濱河造成了極大的恐慌,老刑警劉巖袍患,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件坦康,死亡現(xiàn)場離奇詭異,居然都是意外死亡诡延,警方通過查閱死者的電腦和手機(jī)滞欠,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來肆良,“玉大人筛璧,你說我怎么就攤上這事∪鞘眩” “怎么了夭谤?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長巫糙。 經(jīng)常有香客問我朗儒,道長厢绝,這世上最難降的妖魔是什么烟零? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮龙亲,結(jié)果婚禮上浙值,老公的妹妹穿的比我還像新娘恳不。我一直安慰自己,他們只是感情好开呐,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布烟勋。 她就那樣靜靜地躺著,像睡著了一般负蚊。 火紅的嫁衣襯著肌膚如雪神妹。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天家妆,我揣著相機(jī)與錄音鸵荠,去河邊找鬼。 笑死伤极,一個胖子當(dāng)著我的面吹牛蛹找,可吹牛的內(nèi)容都是我干的姨伤。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼庸疾,長吁一口氣:“原來是場噩夢啊……” “哼乍楚!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起届慈,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤徒溪,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后金顿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體臊泌,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年揍拆,在試婚紗的時候發(fā)現(xiàn)自己被綠了渠概。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡嫂拴,死狀恐怖播揪,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情筒狠,我是刑警寧澤猪狈,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站窟蓝,受9級特大地震影響罪裹,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜运挫,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望套耕。 院中可真熱鬧谁帕,春花似錦、人聲如沸冯袍。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽康愤。三九已至儡循,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間征冷,已是汗流浹背择膝。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留检激,地道東北人肴捉。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓腹侣,卻偏偏與公主長得像,于是被迫代替她去往敵國和親齿穗。 傳聞我的和親對象是個殘疾皇子傲隶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容