blob: dd3086eaac45f60d02c316cffad98be0be7d1586 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 VMware Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* VMware Inc. - initial contribution
*******************************************************************************/
package greenpages.web;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import greenpages.Listing;
import greenpages.web.GreenPagesController;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestExecutionListeners;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.support.DependencyInjectionTestExecutionListener;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath*:/META-INF/spring/module-context.xml", "file:src/main/webapp/WEB-INF/greenpages-servlet.xml", "classpath:/META-INF/spring/test-context.xml" })
@TestExecutionListeners(value = DependencyInjectionTestExecutionListener.class)
public class GreenPagesSpringContextTests {
@Autowired
private GreenPagesController controller;
@Test
public void search() {
List<Listing> results = this.controller.search("johnson");
assertNotNull(results);
assertEquals(1, results.size());
Listing listing = results.get(0);
assertNotNull(listing);
assertEquals("Johnson", listing.getLastName());
}
@Test
public void entry() {
Listing listing = this.controller.entry(1);
assertNotNull(listing);
assertEquals("Johnson", listing.getLastName());
}
}