Package org.jasig.portal.events.tincan.json

Source Code of org.jasig.portal.events.tincan.json.LrsDataModelSerializeTest

/*
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Jasig licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a
* copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License 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 org.jasig.portal.events.tincan.json;

import java.net.URI;
import java.util.Locale;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.collect.ImmutableMap;
import org.jasig.portal.events.tincan.UrnBuilder;
import org.jasig.portal.events.tincan.om.LocalizedString;
import org.jasig.portal.events.tincan.om.LrsActor;
import org.jasig.portal.events.tincan.om.LrsObject;
import org.jasig.portal.events.tincan.om.LrsStatement;
import org.jasig.portal.events.tincan.om.LrsVerb;
import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class LrsDataModelSerializeTest {
    private ObjectMapper objectMapper;
   
    @Before
    public void setup() {
        this.objectMapper = new ObjectMapper();
    }
   
    @Test
    public void testLrsVerbSerialize() throws Exception {
        final String result = this.objectMapper.writeValueAsString(LrsVerb.INITIALIZED);
        assertEquals("{\"id\":\"http://adlnet.gov/expapi/verbs/initialized\",\"display\":{\"en-us\":\"initialized\"}}", result);
    }
   
    @Test
    public void testLrsActorSerialize() throws Exception {
        final LrsActor lrsActor = new LrsActor("user@example.com", "John Doe");
       
        final String result = this.objectMapper.writeValueAsString(lrsActor);
       
        assertEquals("{\"mbox\":\"user@example.com\",\"name\":\"John Doe\",\"objectType\":\"Agent\"}", result);
    }
   
    @Test
    public void testLrsObjectSerialize() throws Exception {
        final UrnBuilder idBuilder = new UrnBuilder("UTF-8", "tincan", "uportal", "activities", "portlet", "fname");
        final URI id = idBuilder.getUri();
       
        final LrsObject lrsObject = new LrsObject(id, "Activity",
                ImmutableMap.of("name", new LocalizedString(new Locale("en", "us"), "Portlet Name"),
                                "description", new LocalizedString(new Locale("en", "us"), "Portlet Description")));
       
        final String result = this.objectMapper.writeValueAsString(lrsObject);
       
        assertEquals("{\"id\":\"urn:tincan:uportal:activities:portlet:fname\",\"objectType\":\"Activity\",\"definition\":{\"name\":{\"en-US\":\"Portlet Name\"},\"description\":{\"en-US\":\"Portlet Description\"}}}", result);
    }
   
    @Test
    public void testLrsStatementSerialize() throws Exception {
        final LrsActor lrsActor = new LrsActor("user@example.com", "John Doe");
       
        final UrnBuilder idBuilder = new UrnBuilder("UTF-8", "tincan", "uportal", "activities", "portlet", "fname");
        final URI id = idBuilder.getUri();
       
        final LrsObject lrsObject = new LrsObject(id, "Activity",
                ImmutableMap.of("name", new LocalizedString(new Locale("en", "us"), "Portlet Name"),
                                "description", new LocalizedString(new Locale("en", "us"), "Portlet Description")));

        final LrsStatement lrsStatement = new LrsStatement(lrsActor, LrsVerb.INITIALIZED, lrsObject);
       
        final String result = this.objectMapper.writeValueAsString(lrsStatement);
       
        assertEquals("{\"actor\":{\"mbox\":\"user@example.com\",\"name\":\"John Doe\",\"objectType\":\"Agent\"},\"verb\":{\"id\":\"http://adlnet.gov/expapi/verbs/initialized\",\"display\":{\"en-us\":\"initialized\"}},\"object\":{\"id\":\"urn:tincan:uportal:activities:portlet:fname\",\"objectType\":\"Activity\",\"definition\":{\"name\":{\"en-US\":\"Portlet Name\"},\"description\":{\"en-US\":\"Portlet Description\"}}}}", result);
    }
}
TOP

Related Classes of org.jasig.portal.events.tincan.json.LrsDataModelSerializeTest

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.