mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-07 16:06:08 +00:00
Added unit test for SimpleFactoryManager
This commit is contained in:
parent
7fe8979846
commit
3c116514fb
@ -0,0 +1,124 @@
|
|||||||
|
/* ownCloud Android Library is available under MIT license
|
||||||
|
* Copyright (C) 2014 ownCloud Inc.
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||||
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||||
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
package com.owncloud.android.lib.test_project.test;
|
||||||
|
|
||||||
|
import java.security.GeneralSecurityException;
|
||||||
|
|
||||||
|
import org.apache.commons.httpclient.protocol.Protocol;
|
||||||
|
import org.apache.commons.httpclient.protocol.ProtocolSocketFactory;
|
||||||
|
|
||||||
|
import android.net.Uri;
|
||||||
|
import android.test.AndroidTestCase;
|
||||||
|
|
||||||
|
import com.owncloud.android.lib.common.OwnCloudAccount;
|
||||||
|
import com.owncloud.android.lib.common.OwnCloudClient;
|
||||||
|
import com.owncloud.android.lib.common.OwnCloudCredentialsFactory;
|
||||||
|
import com.owncloud.android.lib.common.SimpleFactoryManager;
|
||||||
|
import com.owncloud.android.lib.test_project.R;
|
||||||
|
import com.owncloud.android.lib.test_project.SelfSignedConfidentSslSocketFactory;
|
||||||
|
|
||||||
|
import junit.framework.AssertionFailedError;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unit test for SimpleFactoryManager
|
||||||
|
*
|
||||||
|
* @author David A. Velasco
|
||||||
|
*/
|
||||||
|
|
||||||
|
public class SimpleFactoryManagerTest extends AndroidTestCase {
|
||||||
|
|
||||||
|
private SimpleFactoryManager mSFMgr;
|
||||||
|
|
||||||
|
private Uri mServerUri;
|
||||||
|
private String mUsername;
|
||||||
|
private OwnCloudAccount mValidAccount;
|
||||||
|
private OwnCloudAccount mAnonymousAccount;
|
||||||
|
|
||||||
|
public SimpleFactoryManagerTest() {
|
||||||
|
super();
|
||||||
|
|
||||||
|
Protocol pr = Protocol.getProtocol("https");
|
||||||
|
if (pr == null || !(pr.getSocketFactory() instanceof SelfSignedConfidentSslSocketFactory)) {
|
||||||
|
try {
|
||||||
|
ProtocolSocketFactory psf = new SelfSignedConfidentSslSocketFactory();
|
||||||
|
Protocol.registerProtocol(
|
||||||
|
"https",
|
||||||
|
new Protocol("https", psf, 443));
|
||||||
|
|
||||||
|
} catch (GeneralSecurityException e) {
|
||||||
|
throw new AssertionFailedError(
|
||||||
|
"Self-signed confident SSL context could not be loaded");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void setUp() throws Exception {
|
||||||
|
super.setUp();
|
||||||
|
mSFMgr = new SimpleFactoryManager();
|
||||||
|
mServerUri = Uri.parse(getContext().getString(R.string.server_base_url));
|
||||||
|
mUsername = getContext().getString(R.string.username);
|
||||||
|
|
||||||
|
mValidAccount = new OwnCloudAccount(
|
||||||
|
mServerUri, OwnCloudCredentialsFactory.newBasicCredentials(
|
||||||
|
mUsername,
|
||||||
|
getContext().getString(R.string.password)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
mAnonymousAccount = new OwnCloudAccount(
|
||||||
|
mServerUri, OwnCloudCredentialsFactory.getAnonymousCredentials());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testGetClientFor() {
|
||||||
|
OwnCloudClient client = mSFMgr.getClientFor(mValidAccount, getContext());
|
||||||
|
|
||||||
|
assertNotSame("Got same client instances for same account",
|
||||||
|
client, mSFMgr.getClientFor(mValidAccount, getContext()));
|
||||||
|
|
||||||
|
assertNotSame("Got same client instances for different accounts",
|
||||||
|
client, mSFMgr.getClientFor(mAnonymousAccount, getContext()));
|
||||||
|
|
||||||
|
// TODO harder tests
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testRemoveClientFor() {
|
||||||
|
OwnCloudClient client = mSFMgr.getClientFor(mValidAccount, getContext());
|
||||||
|
mSFMgr.removeClientFor(mValidAccount);
|
||||||
|
assertNotSame("Got same client instance after removing it from manager",
|
||||||
|
client, mSFMgr.getClientFor(mValidAccount, getContext()));
|
||||||
|
|
||||||
|
// TODO harder tests
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void testSaveAllClients() {
|
||||||
|
// TODO implement test;
|
||||||
|
// or refactor saveAllClients() method out of OwnCloudClientManager to make
|
||||||
|
// it independent of AccountManager
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user