/*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Mahmood Ali. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.notnoop.apns.integration;
import com.notnoop.apns.APNS;
import com.notnoop.apns.ApnsService;
import com.notnoop.apns.EnhancedApnsNotification;
import com.notnoop.apns.SimpleApnsNotification;
import com.notnoop.apns.utils.ApnsServerStub;
import com.notnoop.apns.utils.junit.DumpThreadsOnErrorRule;
import com.notnoop.apns.utils.junit.Repeat;
import com.notnoop.apns.utils.junit.RepeatRule;
import com.notnoop.exceptions.NetworkIOException;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import static com.notnoop.apns.utils.FixedCertificates.LOCALHOST;
import static com.notnoop.apns.utils.FixedCertificates.clientContext;
import static com.notnoop.apns.utils.FixedCertificates.clientMultiKeyContext;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
@SuppressWarnings("ALL")
public class ApnsConnectionTest {
@Rule
public TestName testName = new TestName();
@Rule
public RepeatRule rr = new RepeatRule();
@Rule
public DumpThreadsOnErrorRule dumpRule = new DumpThreadsOnErrorRule();
ApnsServerStub server;
static SimpleApnsNotification msg1 = new SimpleApnsNotification("a87d8878d878a79", "{\"aps\":{}}");
static SimpleApnsNotification msg2 = new SimpleApnsNotification("a87d8878d878a88", "{\"aps\":{}}");
static EnhancedApnsNotification eMsg1 = new EnhancedApnsNotification(EnhancedApnsNotification.INCREMENT_ID(),
1, "a87d8878d878a88", "{\"aps\":{}}");
static EnhancedApnsNotification eMsg2 = new EnhancedApnsNotification(EnhancedApnsNotification.INCREMENT_ID(),
1, "a87d8878d878a88", "{\"aps\":{}}");
static EnhancedApnsNotification eMsg3 = new EnhancedApnsNotification(EnhancedApnsNotification.INCREMENT_ID(),
1, "a87d8878d878a88", "{\"aps\":{}}");
private int gatewayPort;
@Before
public void startup() {
System.out.println("****** "+testName.getMethodName());
server = ApnsServerStub.prepareAndStartServer();
gatewayPort = server.getEffectiveGatewayPort();
}
@After
public void tearDown() {
server.stop();
server = null;
}
@Repeat(count = 50)
@Test(timeout = 2000)
public void sendOneSimple() throws InterruptedException {
ApnsService service =
APNS.newService().withSSLContext(clientContext())
.withGatewayDestination(LOCALHOST, gatewayPort)
.build();
server.stopAt(msg1.length());
service.push(msg1);
server.getMessages().acquire();
assertArrayEquals(msg1.marshall(), server.getReceived().toByteArray());
}
@Repeat(count = 50)
@Test(timeout = 2000)
public void sendOneQueued() throws InterruptedException {
ApnsService service =
APNS.newService().withSSLContext(clientContext())
.withGatewayDestination(LOCALHOST, gatewayPort)
.asQueued()
.build();
server.stopAt(msg1.length());
service.push(msg1);
server.getMessages().acquire();
assertArrayEquals(msg1.marshall(), server.getReceived().toByteArray());
}
@Test
public void sendOneSimpleWithoutTimeout() throws InterruptedException {
server.getToWaitBeforeSend().set(2000);
ApnsService service =
APNS.newService().withSSLContext(clientContext())
.withGatewayDestination(LOCALHOST, gatewayPort)
.withReadTimeout(5000)
.build();
server.stopAt(msg1.length());
service.push(msg1);
server.getMessages().acquire();
assertArrayEquals(msg1.marshall(), server.getReceived().toByteArray());
}
/**
* Unlike in the feedback case, push messages won't expose the socket timeout,
* as the read is done in a separate monitoring thread.
*
* Therefore, normal behavior is expected in this test.
*
* @throws InterruptedException
*/
@Test
public void sendOneSimpleWithTimeout() throws InterruptedException {
server.getToWaitBeforeSend().set(5000);
ApnsService service =
APNS.newService().withSSLContext(clientContext())
.withGatewayDestination(LOCALHOST, gatewayPort)
.withReadTimeout(1000)
.build();
server.stopAt(msg1.length());
service.push(msg1);
server.getMessages().acquire();
assertArrayEquals(msg1.marshall(), server.getReceived().toByteArray());
}
@Test(timeout = 2000)
public void sendOneSimpleMultiKey() throws InterruptedException {
ApnsService service =
APNS.newService().withSSLContext(clientMultiKeyContext("notnoop-client"))
.withGatewayDestination(LOCALHOST, gatewayPort)
.build();
server.stopAt(msg1.length());
service.push(msg1);
server.getMessages().acquire();
assertArrayEquals(msg1.marshall(), server.getReceived().toByteArray());
}
@Test(timeout = 2000)
public void sendOneSimpleClientCertFail() throws InterruptedException {
ApnsService service =
APNS.newService().withSSLContext(clientMultiKeyContext("notused"))
.withGatewayDestination(LOCALHOST, gatewayPort)
.build();
server.stopAt(msg1.length());
try {
service.push(msg1);
fail();
} catch (NetworkIOException e) {
assertTrue("Expected bad_certifcate exception", e.getMessage().contains("bad_certificate"));
}
}
}