/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import org.junit.Test; import com.amazonaws.RequestClientOptions.Marker; public class RequestClientOptionsTest { @Test public void test() { RequestClientOptions opts = new RequestClientOptions(); for (Marker m : Marker.values()) { assertNull(opts.getClientMarker(m)); } for (Marker m : Marker.values()) { opts.putClientMarker(m, m.name()); } for (Marker m : Marker.values()) { assertEquals(m.name(), opts.getClientMarker(m)); } assertEquals(Marker.USER_AGENT.name(), opts.getClientMarker(Marker.USER_AGENT)); opts.appendUserAgent("2nd-agent"); String ua = opts.getClientMarker(Marker.USER_AGENT); assertEquals(ua, Marker.USER_AGENT.name() + " 2nd-agent", ua); opts.appendUserAgent("3rd-agent"); ua = opts.getClientMarker(Marker.USER_AGENT); assertEquals(ua, Marker.USER_AGENT.name() + " 2nd-agent 3rd-agent", ua); assertEquals(ua, opts.getClientMarker(Marker.USER_AGENT)); } @Test public void copyTo() { RequestClientOptions from = new RequestClientOptions(); from.appendUserAgent("useragent"); from.setReadLimit(1234); assertNotNull(from.getClientMarker(Marker.USER_AGENT)); assertTrue(1234 == from.getReadLimit()); // Before copy RequestClientOptions to = new RequestClientOptions(); assertNull(to.getClientMarker(Marker.USER_AGENT)); assertFalse(1234 == to.getReadLimit()); // After copy from.copyTo(to); assertEquals(from.getClientMarker(Marker.USER_AGENT), to.getClientMarker(Marker.USER_AGENT)); assertTrue(1234 == to.getReadLimit()); } }