/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.streams.verbs;
import org.apache.streams.pojo.json.Activity;
import org.apache.streams.pojo.json.ActivityObject;
import org.apache.streams.pojo.json.Provider;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.Test;
/**
* Tests for {$link: org.apache.streams.verbs.VerbDefinitionTemplateUtil}.
*/
public class VerbDefinitionTemplateTest {
private ObjectMapper mapper = new ObjectMapper();
/**
* Test application of template with no field.
*/
@Test
public void testNoField() throws Exception {
Activity activity = new Activity().withVerb("nofields");
VerbDefinition definition = mapper.readValue(VerbDefinitionResolverTest.class.getResourceAsStream("/nofields.json"), VerbDefinition.class);
assert VerbDefinitionTemplateUtil.asString(activity, definition.getObjects().get(0)).contains("something");
}
/**
* Test application of template with top-level fields.
*/
@Test
public void testTopField() throws Exception {
ActivityObject actor = new ActivityObject();
actor.setObjectType("page");
actor.setDisplayName("Paige");
Provider provider = new Provider();
provider.setObjectType("application");
provider.setDisplayName("Ahp");
ActivityObject object = new ActivityObject();
object.setObjectType("task");
object.setDisplayName("Tsk");
ActivityObject target = new ActivityObject();
target.setObjectType("person");
target.setDisplayName("Homie");
Activity activity = new Activity().withVerb("post");
activity.setActor(actor);
activity.setProvider(provider);
activity.setObject(object);
activity.setTarget(target);
VerbDefinition definition = mapper.readValue(VerbDefinitionTest.class.getResourceAsStream("/post.json"), VerbDefinition.class);
String message = VerbDefinitionTemplateUtil.asString(activity, definition.getObjects().get(0));
assert message.contains("Paige");
assert message.contains("Ahp");
assert message.contains("Tsk");
assert message.contains("Homie");
}
/**
* Test application of template with second-level fields.
*/
@Test
public void testSecondFields() {
}
}