最初のZatsテストを実装しようとしていますが、Springの依存性注入が欠落しているためにスタックしました。
以下のコードスニペットを使用したテストは緑色になりますが、doAfterComposeが呼び出されることはありません。zulページへのコントローラーの挿入が機能していないようです。apply = "$ {teamsPopupCtrl}"を完全修飾名に変更すると、コントローラーは使用されますが、teamServiceがnullであり、doAfterComposeからteamService.findAll()が呼び出されるとNullPointerExceptionが発生します。したがって、ここでも何も注入されていないようです。
ApplicationContext自体はエラーなしでロードされ、@ Autowired privateTeamServiceteamServiceを使用しています。私のテストクラスでの検証は期待どおりに機能します。firstTestが実行されるとき、teamServiceはnullではありません。
私も使ってみました
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
zulページにありますが、それは
IOException: Server returned HTTP response code: 500 for URL: http://127.0.0.1:56851/teamsPopup.zul
これ以上指定できませんでした。
Zulページ:
<?page id="teamsPopup" title="layout" contentType="text/html;charset=UTF-8"?>
<zk>
<window apply="${teamsPopupCtrl}" width="400px" title="Fachteams" border="normal" closable="true">
<listbox id="teamsList" multiple="true" checkmark="true" width="380px" mold="paging" pageSize="10">
<listhead><listheader label="Fachteams" /></listhead>
</listbox>
<hbox height="10px" />
<toolbar mold="panel" align="center">
<button id="btnOk" forward="onOK" label="OK" mold="trendy" height="25px" width="120px" image="./images/ok.png" />
<button forward="onClose" label="Abbruch" mold="trendy" height="25px" width="120px" image="./images/cancel.png" />
</toolbar>
</window>
</zk>
テストクラス:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:applicationContext/test-applicationContext.xml"})
public class TeamsPopupTest {
@BeforeClass
public static void beforeClass() throws Exception {
Zats.init("./src/main/webapp/WEB-INF/pages/schemaOverview");
}
@AfterClass
public static void afterClass() throws Exception {
Zats.end();
}
@After
public void after() throws Exception {
Zats.cleanup();
}
@Test
public void firstTest() throws Exception {
final DesktopAgent desktop = Zats.newClient().connect("/teamsPopup.zul");
}
}
コントローラクラス:
@Component
@Scope(value = "prototype")
public class TeamsPopupCtrl extends AbstractPopupCtrl {
private static final long serialVersionUID = -1945118180857183121L;
// ZK Autowire
Listbox teamsList;
@Autowired
@Qualifier("teamsPopupModel")
private PopupModel popupModel;
@Autowired
private TeamService teamService;
// ZK Autowire
private Listbox teamsBox;
@Override
public void doAfterCompose(final Window comp) throws Exception {
super.doAfterCompose(comp);
this.teamsList.setItemRenderer(new TeamListBoxRenderer());
this.teamsList.setModel(getFilteredTeamList());
}
public SchemaModel getSchemaModel() {
return (SchemaModel) getPerspectiveController().getCurrentPerspective().getModel();
}
@SuppressWarnings({"unchecked", "rawtypes"})
public void onOK(final Event event) {
final ListModelList<?> model = (ListModelList<?>) this.teamsList.getModel();
final List<Team> selectedTeams = new ArrayList(model.getSelection());
this.teamService.addTeamsToNodeInSchema(getSchemaModel().getCurrentNode(), selectedTeams);
this.teamsBox.setModel(new ListModelList<NodeTeamAssociation>(getSchemaModel().getCurrentNode().getNodeTeamList()));
doClosePopup();
if (!model.getSelection().isEmpty()) {
modify();
}
}
@Override
public void doOpenPopup(final org.zkoss.zul.Window window) {
super.doOpenPopup(window);
Executions.createComponents("/WEB-INF/pages/schemaOverview/teamsPopup.zul", getModel().getPopupWindow(), null);
}
private ListModelList<Team> getFilteredTeamList() {
final Collection<Team> allTeams = new ArrayList<Team>(this.teamService.findAll());
for (final NodeTeamAssociation selectedTeam : getSchemaModel().getCurrentNode().getNodeTeamList()) {
allTeams.remove(selectedTeam.getTeam());
}
return new ListModelList<Team>(allTeams);
}
protected class TeamListBoxRenderer implements ListitemRenderer<Team>, Serializable {
private static final long serialVersionUID = 8268285374821502239L;
@Override
public void render(final Listitem item, final Team teamdata, final int index) throws Exception {
final Listcell lc = new org.zkoss.zul.Listcell();
lc.setLabel(teamdata.getName());
lc.setValue(teamdata);
lc.setParent(item);
TeamsPopupCtrl.this.teamsList.setMultiple(true);
TeamsPopupCtrl.this.teamsList.setCheckmark(true);
}
}
@Override
protected PopupModel getModel() {
return this.popupModel;
}
}
依存性注入を使用してテストを機能させる方法や、テストセットアップに欠けているものを誰かが知っていますか?