/* * Copyright (c) 2012 Socialize 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.socialize.test.integration.services.c; import android.app.Instrumentation; import com.socialize.Socialize; import com.socialize.UserUtils; import com.socialize.entity.User; import com.socialize.error.SocializeException; import com.socialize.listener.user.UserSaveListener; import com.socialize.test.SocializeActivityTest; import com.socialize.test.util.TestUtils; import com.socialize.ui.profile.ProfileActivity; import com.socialize.ui.profile.UserSettings; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; /** * @author Jason Polites * */ public class UserUtilsTest extends SocializeActivityTest { public void testGetCurrentUser() throws Exception { User user = UserUtils.getCurrentUser(TestUtils.getActivity(this)); assertNotNull(user); Socialize.getSocialize().destroy(true); User user2 = UserUtils.getCurrentUser(TestUtils.getActivity(this)); assertEquals(user, user2); } public void testShowUserProfile() throws SocializeException { TestUtils.setUp(this); Instrumentation.ActivityMonitor monitor = TestUtils.setUpActivityMonitor(this, ProfileActivity.class); UserUtils.showUserSettings(TestUtils.getActivity(this)); ProfileActivity profile = (ProfileActivity) monitor.waitForActivityWithTimeout(20000); assertNotNull(profile); User currentUser = UserUtils.getCurrentUser(TestUtils.getActivity(this)); // Look for the ID assertTrue(TestUtils.findText(profile, String.valueOf(currentUser.getId()), 20000)); profile.finish(); } public void testSaveUserSettings() throws Exception { UserSettings userSettings = UserUtils.getUserSettings(TestUtils.getActivity(this)); User user = UserUtils.getCurrentUser(TestUtils.getActivity(this)); String name = "foobar" + Math.random(); userSettings.setFirstName(name); long idBefore = user.getId(); final CountDownLatch latch = new CountDownLatch(1); UserUtils.saveUserSettings(getContext(), userSettings, new UserSaveListener() { @Override public void onUpdate(User entity) { latch.countDown(); } @Override public void onError(SocializeException error) { error.printStackTrace(); latch.countDown(); } }); latch.await(20, TimeUnit.SECONDS); Socialize.getSocialize().destroy(true); User after = UserUtils.getCurrentUser(TestUtils.getActivity(this)); long idAfter = after.getId(); String firstName = after.getFirstName(); assertNotNull(firstName); assertEquals(idBefore, idAfter); assertEquals(name, firstName); } }