001/*
002 * (C) Copyright 2006-2008 Nuxeo SAS (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     bstefanescu
016 */
017package org.nuxeo.ecm.webengine.forms.validation.test;
018
019import java.util.Arrays;
020
021import org.nuxeo.ecm.webengine.forms.SimpleFormDataProvider;
022import org.nuxeo.ecm.webengine.forms.validation.ValidationException;
023
024/**
025 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
026 */
027public class Test {
028
029    public static void main(String[] args) throws Exception {
030        try {
031            SimpleFormDataProvider data = new SimpleFormDataProvider();
032            data.putString("title", "my title");
033            data.putString("name", "");
034            data.putString("age", "40");
035            data.putString("number", "10");
036            data.putList("emails", "a@b.com", "a@abc.com");
037            // data.putString("id", "theid");
038            data.putString("password", "xxx");
039            data.putString("verifyPassword", "xx");
040            data.putString("other", "some value");
041            MyForm form = data.validate(MyForm.class);
042            System.out.println(form.getTitle());
043            System.out.println(form.getName());
044            System.out.println(form.getAge());
045            System.out.println(form.getNumber());
046            System.out.println(Arrays.asList(form.getEmails()));
047            System.out.println(form.unknownKeys());
048        } catch (ValidationException e) {
049            if (e.hasFieldErrors()) {
050                System.err.println("Errors:\n" + e.getMessage());
051            }
052        }
053    }
054
055}