Package com.renren.api.client.services

Source Code of com.renren.api.client.services.InvitationsServiceTest

package com.renren.api.client.services;

import java.util.Date;

import junit.framework.Assert;

import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.junit.Test;

import com.renren.api.client.AbstractServiceTest;
import com.renren.api.client.param.impl.AccessToken;

/**
* @author 李勇(yong.li@opi-corp.com) 2011-2-21
*/
public class InvitationsServiceTest extends AbstractServiceTest {


    @Test
    public void testCreateLink() {
        String link = this.getRenrenApiClient().getInvitationsService().createLink(
                InvitationsService.DOMAIN_RENREN,new AccessToken(this.getAccessToken()));
        Assert.assertTrue(link.indexOf("renren") > -1);
    }

    @Test
    public void testGetInfo() {
        int inviteeId = 252090984;
        JSONObject obj = this.getRenrenApiClient().getInvitationsService().getInfo(inviteeId);
        if (obj == null) {
            System.out.println("Warning not found invitee!");
        }
    }

    @Test
    public void testGetInfos() {
        Date end = new Date();
        Date begin = new Date(end.getTime() - (1000 * 60 * 60 * 24 * 12));
        JSONArray rets = this.getRenrenApiClient().getInvitationsService().getInfo(begin, end,1,1);
        if (rets.size() < 1) {
            System.out.println("Warning not found invitees!");
        }
    }

}
TOP

Related Classes of com.renren.api.client.services.InvitationsServiceTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.