Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 25e311268da0c55f5b5edaf04c5fb56d376badf9 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2011, 2017 SAP AG and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Lazar Kirchev, SAP AG - initial contribution
 ******************************************************************************/

package org.eclipse.equinox.console.telnet;

import static org.easymock.EasyMock.createMock;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;

import org.eclipse.equinox.console.common.ConsoleInputStream;
import org.eclipse.equinox.console.common.ConsoleOutputStream;
import org.junit.Assert;
import org.junit.Test;

public class TelnetInputHandlerTests {

    private static final long WAIT_TIME = 10000;

    @Test
    public void testHandler() throws Exception {
        ByteArrayInputStream input = new ByteArrayInputStream("abcde".getBytes());
        ConsoleInputStream in = new ConsoleInputStream();
        ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
        ConsoleOutputStream out = new ConsoleOutputStream(byteOut);
        Callback callback = createMock(Callback.class);
        TelnetInputHandler handler = new TelnetInputHandler(input, in, out, callback);
        handler.start();

        // wait for the accept thread to start execution
        try {
            Thread.sleep(WAIT_TIME);
        } catch (InterruptedException ie) {
            // do nothing
        }

        String res = byteOut.toString();
        Assert.assertTrue("Wrong input. Expected abcde, read " + res, res.equals("abcde"));
    }

}

Back to the top