com.garyclayburg.attributes.AttributeServiceSpringTest.java Source code

Java tutorial

Introduction

Here is the source code for com.garyclayburg.attributes.AttributeServiceSpringTest.java

Source

/*
 * VisualSync - a tool to visualize user data synchronization
 * Copyright (c) 2014 Gary Clayburg
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

package com.garyclayburg.attributes;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.garyclayburg.MongoInMemoryTestBase;
import com.garyclayburg.persistence.domain.User;
import com.garyclayburg.persistence.repository.UserStore;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.net.URL;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.not;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;

/**
 * Created by IntelliJ IDEA.
 * Date: 4/7/14
 * Time: 3:56 PM
 *
 * @author Gary Clayburg
 */
@RunWith(SpringJUnit4ClassRunner.class)
public class AttributeServiceSpringTest extends MongoInMemoryTestBase {

    @SuppressWarnings("UnusedDeclaration")
    private static final Logger log = LoggerFactory.getLogger(AttributeServiceSpringTest.class);

    @Autowired
    @SuppressWarnings("SpringJavaAutowiredMembersInspection")
    AttributeService attributeService;

    @Autowired
    @SuppressWarnings("SpringJavaAutowiredMembersInspection")
    ScriptRunner scriptRunner;

    @Autowired
    @SuppressWarnings("SpringJavaAutowiredMembersInspection")
    private UserStore auditedUserRepo;
    @Rule
    public TestName testName = new TestName();
    private User luke;

    @Before
    public void setUp() throws IOException, URISyntaxException {
        log.debug("Running test setUp: " + testName.getMethodName());
        URL groovyURL = this.getClass().getClassLoader().getResource("groovies/emptyscript.groovy");

        assert groovyURL != null;

        String scriptRoot = new File(groovyURL.toURI()).getParentFile().getPath();
        scriptRunner.setRoot(new String[] { scriptRoot });

        attributeService.setScriptRunner(scriptRunner);

        luke = new User();
        luke.setFirstname("Luke");
        luke.setLastname("Bryan");
        luke.setId("11223345");
        auditedUserRepo.save(luke);

    }

    @Test
    public void testGeneratedUser() {

        GeneratedUser lukeFound = auditedUserRepo.findGeneratedUserByFirstname("Luke");

        assertEquals("Bryan", lukeFound.getLastname());
        assertEquals("Luke Bryan", lukeFound.getAttribute("cn"));
    }

    @Test
    public void whenSerializingUsingJsonGetter() throws JsonProcessingException {
        DynamicUser generatedUser = new DynamicUser(luke);
        generatedUser.setAttributes(attributeService.getGeneratedAttributesBean(luke));

        String result = new ObjectMapper().writeValueAsString(generatedUser);
        assertThat(result, containsString("dynamicAttributes"));
        assertThat(result, containsString("Luke Bryan"));
        assertThat(result, containsString("\"cn\":\"Luke Bryan\""));
    }

    @Test
    public void whenSerializingIgnoreAttributesBean() throws JsonProcessingException {
        DynamicUser generatedUser = new DynamicUser(luke);
        generatedUser.setAttributes(attributeService.getGeneratedAttributesBean(luke));

        String result = new ObjectMapper().writeValueAsString(generatedUser);
        assertThat(result, not(containsString("attributes")));
    }

}