summaryrefslogtreecommitdiffstats
path: root/docproc/src/test/java/com/yahoo/docproc/NotAcceptingNewProcessingsTestCase.java
blob: d20e372e8498046f0ea59bd308baa522cbed7bb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.docproc;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 */
public class NotAcceptingNewProcessingsTestCase extends junit.framework.TestCase {

    public void testNotAccepting() {
        DocprocService service = new DocprocService("habla");
        service.setCallStack(new CallStack());
        service.setInService(true);

        service.process(new Processing());
        assertEquals(1, service.getQueueSize());

        service.setAcceptingNewProcessings(false);

        try {
            service.process(new Processing());
            fail("Should have gotten IllegalStateException here");
        } catch (IllegalStateException ise) {
            //ok!
        }
        assertEquals(1, service.getQueueSize());
    }
}