java 测试工具 - mockito 原理模拟

2 篇文章 0 订阅

 

package cn.java.test.mockito_mock;


import java.io.Serializable;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.LinkedList;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;

public class Main {

    public static void main(String[] args) {
        Class interfaceClass = FooOneService.class;
        FooOneService fooOneService = (FooOneService) Proxy.newProxyInstance(interfaceClass.getClassLoader(), new Class[]{interfaceClass},
                new FooOneServiceInvocationHandler(interfaceClass));

        // 1、打桩;第一次调用,声明《返回值信息》
        {
            if (false) {
                Mockito.when(fooOneService.method1(1)).thenAnswer(new AbstractAnswer() {
                    @Override
                    Object answer(Method method) {
                        return "this is " + method.getName();
                    }
                });
            } else {
                // 创建 stub
                fooOneService.method1(1);

                // 配置 stub
                Mockito.MOCKITO_CORE.stub().thenAnswer(new AbstractAnswer() {
                    @Override
                    Object answer(Method method) {
                        return "this is " + method.getName();
                    }
                });
            }
        }

        // 2、调用;第二次调用,返回《配置的返回值》
        String result = fooOneService.method1(1);
        System.out.println("result = " + result);
    }

    interface FooOneService {
        String method1(Integer id);
    }

    static class FooOneServiceInvocationHandler<T> implements InvocationHandler, Serializable {

        private final Class<T> targetInterface;

        private InvocationContainerImpl invocationContainerImpl;

        ThreadSafeMockingProgress mockingProgress = new ThreadSafeMockingProgress();

        public FooOneServiceInvocationHandler(Class<T> targetInterface) {
            this.targetInterface = targetInterface;
            this.invocationContainerImpl = new InvocationContainerImpl();
        }

        @Override
        public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
            if (Object.class.equals(method.getDeclaringClass())) { // 如果调用方法在Object中声明,对于invoke的第一个参数就使用this
                try {
                    return method.invoke(this, args);
                } catch (Throwable t) {
                    throw t;
                }
            } else {
                OngoingStubbingImpl ongoingStubbing = new OngoingStubbingImpl(invocationContainerImpl);
                mockingProgress.reportOngoingStubbing(ongoingStubbing);

                StubbedInvocationMatcher stubbedInvocation = invocationContainerImpl.findAnswerFor(method);
                if (stubbedInvocation != null) { // 命中"桩"
                    return stubbedInvocation.answer(method); // 返回mock数据
                } else {
                    return null;
                }
            }
        }
    }

    static class Mockito {
        static final MockitoCore MOCKITO_CORE = new MockitoCore();

        public static OngoingStubbingImpl when(Object methodCall) {
            return MOCKITO_CORE.when(methodCall);
        }
    }

    static class MockitoCore {
        private final ThreadSafeMockingProgress mockingProgress = new ThreadSafeMockingProgress();

        public OngoingStubbingImpl when(Object methodCall) {
            return stub();
        }

        public OngoingStubbingImpl stub() {
            OngoingStubbingImpl stubbing = mockingProgress.pullOngoingStubbing();
            return stubbing;
        }
    }

    static abstract class AbstractAnswer {
        abstract Object answer(Method method);
    }

    static class StubbedInvocationMatcher {

        private final Queue<AbstractAnswer> answers = new ConcurrentLinkedQueue<>();

        public StubbedInvocationMatcher(AbstractAnswer answer) {
            this.answers.add(answer);
        }

        public boolean matches(Method method) {
            return true;
        }

        public Object answer(Method method) {
            AbstractAnswer a;
            synchronized (answers) {
                a = answers.size() == 1 ? answers.peek() : answers.poll();
            }
            return a.answer(method);
        }
    }


    static class InvocationContainerImpl {
        private final LinkedList<StubbedInvocationMatcher> stubbed = new LinkedList();

        public StubbedInvocationMatcher findAnswerFor(Method method) {
            synchronized (stubbed) {
                for (StubbedInvocationMatcher s : stubbed) {
                    if (s.matches(method)) {
                        return s;
                    }
                }
            }
            return null;
        }

        public void addAnswer(AbstractAnswer answer) {
            synchronized (stubbed) {
                stubbed.addFirst(new StubbedInvocationMatcher(answer));
            }
        }
    }

    static class OngoingStubbingImpl {
        private final InvocationContainerImpl invocationContainerImpl;

        public OngoingStubbingImpl(InvocationContainerImpl invocationContainerImpl) {
            this.invocationContainerImpl = invocationContainerImpl;
        }

        public OngoingStubbingImpl thenAnswer(AbstractAnswer answer) {
            invocationContainerImpl.addAnswer(answer);
            return this;
        }
    }

    static class ThreadSafeMockingProgress {
        private static final ThreadLocal<MockingProgressImpl> mockingProgress = new ThreadLocal<>();

        static MockingProgressImpl threadSafely() {
            if (mockingProgress.get() == null) {
                mockingProgress.set(new MockingProgressImpl());
            }
            return mockingProgress.get();
        }

        public void reportOngoingStubbing(OngoingStubbingImpl iOngoingStubbing) {
            threadSafely().reportOngoingStubbing(iOngoingStubbing);
        }

        public OngoingStubbingImpl pullOngoingStubbing() {
            return threadSafely().pullOngoingStubbing();
        }
    }

    static class MockingProgressImpl {
        OngoingStubbingImpl iOngoingStubbing;

        public void reportOngoingStubbing(OngoingStubbingImpl iOngoingStubbing) {
            this.iOngoingStubbing = iOngoingStubbing;
        }

        public OngoingStubbingImpl pullOngoingStubbing() {
            OngoingStubbingImpl temp = iOngoingStubbing;
            iOngoingStubbing = null;
            return temp;
        }
    }


}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值