Spring boot 整合mockito,BAT常见的20道Java面试题详解

// anyInt()匹配任何int参数,这意味着参数为任意值,其返回值均是element

when(mockedList.get(anyInt())).thenReturn(“element”);

// 此时打印是element

System.out.println(mockedList.get(999));

模拟方法调用次数


// 调用add一次

mockedList.add(“once”);

// 下面两个写法验证效果一样,均验证add方法是否被调用了一次

verify(mockedList).add(“once”);

verify(mockedList, times(1)).add(“once”);

校验行为


// mock creation

List mockedList = mock(List.class);

// using mock object

mockedList.add(“one”);

mockedList.clear();

//verification

verify(mockedList).add(“one”);

verify(mockedList).clear();

模拟方法调用(Stubbing)


//You can mock concrete classes, not just interfaces

LinkedList mockedList = mock(LinkedList.class);

//stubbing

when(mockedList.get(0)).thenReturn(“first”);

when(mockedList.get(1)).thenThrow(new RuntimeException());

//following prints “first”

System.out.println(mockedList.get(0));

//following throws runtime exception

System.out.println(mockedList.get(1));

//following prints “null” because get(999) was not stubbed

System.out.println(mockedList.get(999));

verify(mockedList).get(0);

参数匹配


//stubbing using built-in anyInt() argument matcher

when(mockedList.get(anyInt())).thenReturn(“element”);

//stubbing using custom matcher (let’s say isValid() returns your own matcher implementation):

when(mockedList.contains(argThat(isValid()))).thenReturn(“element”);

//following prints “element”

System.out.println(mockedList.get(999));

//you can also verify using an argument matcher

verify(mockedList).get(anyInt());

//argument matchers can also be written as Java 8 Lambdas

verify(mockedList).add(someString -> someString.length() > 5);

校验方法调用次数


//using mock

mockedList.add(“once”);

mockedList.add(“twice”);

mockedList.add(“twice”);

mockedList.add(“three times”);

mockedList.add(“three times”);

mockedList.add(“three times”);

//following two verifications work exactly the same - times(1) is used by default

verify(mockedList).add(“once”);

verify(mockedList, times(1)).add(“once”);

//exact number of invocations verification

verify(mockedList, times(2)).add(“twice”);

verify(mockedList, times(3)).add(“three times”);

//verification using never(). never() is an alias to times(0)

verify(mockedList, never()).add(“never happened”);

//verification using atLeast()/atMost()

verify(mockedList, atLeastOnce()).add(“three times”);

verify(mockedList, atLeast(2)).add(“five times”);

verify(mockedList, atMost(5)).add(“three times”);

模拟无返回方法抛出异常


doThrow(new RuntimeException()).when(mockedList).clear();

//following throws RuntimeException:

mockedList.clear();

校验方法调用顺序


// A. Single mock whose methods must be invoked in a particular order

List singleMock = mock(List.class);

//using a single mock

singleMock.add(“was added first”);

singleMock.add(“was added second”);

//create an inOrder verifier for a single mock

InOrder inOrder = inOrder(singleMock);

//following will make sure that add is first called with "was added first, then with “was added second”

inOrder.verify(singleMock).add(“was added first”);

inOrder.verify(singleMock).add(“was added second”);

// B. Multiple mocks that must be used in a particular order

List firstMock = mock(List.class);

List secondMock = mock(List.class);

//using mocks

firstMock.add(“was called first”);

secondMock.add(“was called second”);

//create inOrder object passing any mocks that need to be verified in order

InOrder inOrder = inOrder(firstMock, secondMock);

//following will make sure that firstMock was called before secondMock

inOrder.verify(firstMock).add(“was called first”);

inOrder.verify(secondMock).add(“was called second”);

// Oh, and A + B can be mixed together at will

校验方法是否从未调用


//using mocks - only mockOne is interacted

mockOne.add(“one”);

//ordinary verification

verify(mockOne).add(“one”);

//verify that method was never called on a mock

verify(mockOne, never()).add(“two”);

//verify that other mocks were not interacted

verifyZeroInteractions(mockTwo, mockThree);

快速创建Mock对象


public class ArticleManagerTest {

@Mock private ArticleCalculator calculator;

@Mock private ArticleDatabase database;

@Mock private UserProvider userProvider;

@Before

public void before(){

MockitoAnnotations.initMocks(this);

}

}

自定义返回不同结果


when(mock.someMethod(“some arg”))

.thenThrow(new RuntimeException()) // 第一次会抛出异常

.thenReturn(“foo”); // 第二次会返回这个结果

//First call: throws runtime exception:

mock.someMethod(“some arg”); // 第一次

//Second call: prints “foo”

System.out.println(mock.someMethod(“some arg”)); // 第二次

//Any consecutive call: prints “foo” as well (last stubbing wins).

System.out.println(mock.someMethod(“some arg”)); // 第n次(n> 2),依旧以最后返回最后一个配置

对返回结果进行拦截


when(mock.someMethod(anyString())).thenAnswer(new Answer() {

Object answer(InvocationOnMock invocation) {

Object[] args = invocation.getArguments();

Object mock = invocation.getMock();

return "called with arguments: " + args;

}

});

//the following prints “called with arguments: foo”

System.out.println(mock.someMethod(“foo”));

Mock函数操作


可以通过doThrow(), doAnswer(), doNothing(), doReturn() and doCallRealMethod() 来自定义函数操作。

暗中调用真实对象


List list = new LinkedList();

List spy = spy(list);

//optionally, you can stub out some methods:

when(spy.size()).thenReturn(100);

//using the spy calls real methods

spy.add(“one”);

spy.add(“two”);

//prints “one” - the first element of a list

System.out.println(spy.get(0));

//size() method was stubbed - 100 is printed

System.out.println(spy.size());

//optionally, you can verify

verify(spy).add(“one”);

verify(spy).add(“two”);

改变默认返回值


Foo mock = mock(Foo.class, Mockito.RETURNS_SMART_NULLS);

Foo mockTwo = mock(Foo.class, new YourOwnAnswer());

捕获函数的参数值


ArgumentCaptor argument = ArgumentCaptor.forClass(Person.class);

verify(mock).doSomething(argument.capture());

assertEquals(“John”, argument.getValue().getName());

部分Mock


//you can create partial mock with spy() method:

List list = spy(new LinkedList());

//you can enable partial mock capabilities selectively on mocks:

Foo mock = mock(Foo.class);

//Be sure the real implementation is ‘safe’.

//If real implementation throws exceptions or depends on specific state of the object then you’re in trouble.

when(mock.someMethod()).thenCallRealMethod();

重置Mock


List mock = mock(List.class);

when(mock.size()).thenReturn(10);

mock.add(1);

reset(mock);

//at this point the mock forgot any interactions & stubbing

序列化


List list = new ArrayList();

List spy = mock(ArrayList.class, withSettings()

.spiedInstance(list)

.defaultAnswer(CALLS_REAL_METHODS)

.serializable());

检查超时


//passes when someMethod() is called within given time span

verify(mock, timeout(100)).someMethod();

//above is an alias to:

verify(mock, timeout(100).times(1)).someMethod();

//passes when som`eMethod() is called exactly 2 times within given time span

verify(mock, timeout(100).times(2)).someMethod();

//passes when someMethod() is called at least 2 times within given time span

verify(mock, timeout(100).atLeast(2)).someMethod();

//verifies someMethod() within given time span using given verification mode

//useful only if you have your own custom verification modes.

verify(mock, new Timeout(100, yourOwnVerificationMode)).someMethod();

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Java工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以添加V获取:vip1024b (备注Java)
img

总结

面试难免让人焦虑不安。经历过的人都懂的。但是如果你提前预测面试官要问你的问题并想出得体的回答方式,就会容易很多。

此外,都说“面试造火箭,工作拧螺丝”,那对于准备面试的朋友,你只需懂一个字:刷!

给我刷刷刷刷,使劲儿刷刷刷刷刷!今天既是来谈面试的,那就必须得来整点面试真题,这不花了我整28天,做了份“Java一线大厂高岗面试题解析合集:JAVA基础-中级-高级面试+SSM框架+分布式+性能调优+微服务+并发编程+网络+设计模式+数据结构与算法等”

image

且除了单纯的刷题,也得需准备一本【JAVA进阶核心知识手册】:JVM、JAVA集合、JAVA多线程并发、JAVA基础、Spring 原理、微服务、Netty与RPC、网络、日志、Zookeeper、Kafka、RabbitMQ、Hbase、MongoDB、Cassandra、设计模式、负载均衡、数据库、一致性算法、JAVA算法、数据结构、加密算法、分布式缓存、Hadoop、Spark、Storm、YARN、机器学习、云计算,用来查漏补缺最好不过。

image

容对你有帮助,可以添加V获取:vip1024b (备注Java)**
[外链图片转存中…(img-EjlvHP2l-1712107093153)]

总结

面试难免让人焦虑不安。经历过的人都懂的。但是如果你提前预测面试官要问你的问题并想出得体的回答方式,就会容易很多。

此外,都说“面试造火箭,工作拧螺丝”,那对于准备面试的朋友,你只需懂一个字:刷!

给我刷刷刷刷,使劲儿刷刷刷刷刷!今天既是来谈面试的,那就必须得来整点面试真题,这不花了我整28天,做了份“Java一线大厂高岗面试题解析合集:JAVA基础-中级-高级面试+SSM框架+分布式+性能调优+微服务+并发编程+网络+设计模式+数据结构与算法等”

[外链图片转存中…(img-MgFomJ6X-1712107093153)]

且除了单纯的刷题,也得需准备一本【JAVA进阶核心知识手册】:JVM、JAVA集合、JAVA多线程并发、JAVA基础、Spring 原理、微服务、Netty与RPC、网络、日志、Zookeeper、Kafka、RabbitMQ、Hbase、MongoDB、Cassandra、设计模式、负载均衡、数据库、一致性算法、JAVA算法、数据结构、加密算法、分布式缓存、Hadoop、Spark、Storm、YARN、机器学习、云计算,用来查漏补缺最好不过。

[外链图片转存中…(img-RAGkhOhw-1712107093153)]

  • 5
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值