/*
* Copyright 2002-2007 the original author or authors.
*
* Licensed 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.internna.iwebmvc.spring.binding;
import java.util.Calendar;
import org.internna.iwebmvc.core.crypto.impl.DES3CiphererDecipherer;
import org.internna.iwebmvc.model.core.Document;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Binder for Document
*
* @author Jose Noheda
* @since 1.0
*/
public class DocumentBinderTest {
@Test
public void setAsText() throws Exception {
DES3CiphererDecipherer crypto = new DES3CiphererDecipherer();
crypto.init();
DocumentBinder binder = new DocumentBinder(crypto);
binder.setAsText("mimeType=image/gif\nsizeInBytes=200\nuri=" + crypto.encrypt("/xx/yy.gif") + "\ncreated=2008-03-18\nidentifier=coverdata\n");
Document doc = (Document) binder.getValue();
assertEquals("coverdata", doc.getIdentifier());
assertTrue(200 == doc.getSizeInBytes());
Calendar c = Calendar.getInstance();
assertTrue(doc.getCreated().compareTo(c.getTime()) < 0);
}
}