/**
* Copyright (C) 2011 Adriano Monteiro Marques
*
* Author: Zubair Nabi <zn.zubairnabi@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
package org.umit.icm.mobile.test.connectivity;
import java.util.ArrayList;
import java.util.List;
import org.umit.icm.mobile.connectivity.Website;
import org.umit.icm.mobile.process.Constants;
import org.umit.icm.mobile.utils.SDCardReadWrite;
import junit.framework.Assert;
import android.test.AndroidTestCase;
public class WebsiteReadWriteTests extends AndroidTestCase {
public void testWebsiteReadWrite() throws Throwable {
Website website = new Website("url", "status", "check", "id", 1);
website.writeWebsite();
Website newWebsite = website.readWebsite("url");
Assert.assertTrue(website.equals(newWebsite));
}
public void testWebsiteListReadWrite() throws Throwable {
Website website1 = new Website("url1","1","1", "1", 1);
Website website2 = new Website("url2","2","2", "2" ,2);
List<Website> websiteList = new ArrayList<Website>();
websiteList.add(website1);
websiteList.add(website2);
SDCardReadWrite.writeWebsitesList(Constants.WEBSITES_DIR
, websiteList);
List<Website> newWebsiteList
= SDCardReadWrite.readWebsitesList(Constants.WEBSITES_DIR);
Assert.assertTrue(websiteList.get(0).equals(newWebsiteList.get(0)));
Assert.assertTrue(websiteList.get(1).equals(newWebsiteList.get(1)));
}
}