blob: effbbb2fb5b936464919398ed82b45e2b9172c5f [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 flash.swf.tags;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import flash.swf.Movie;
import flash.swf.MovieEncoder;
import flash.swf.TagDecoder;
import flash.swf.TagEncoder;
import flash.swf.types.Rect;
public class ProductInfoTest extends TestCase {
public ProductInfoTest() {
}
protected void setUp() throws Exception {
}
public static Test suite() {
return new TestSuite(ProductInfoTest.class);
}
public void testCompileDate() throws IOException {
long time = System.currentTimeMillis();
// encode the movie with the product info (compilation time)
TagEncoder te = new TagEncoder();
MovieEncoder me = new MovieEncoder(te);
Movie movie = new Movie();
movie.size = new Rect(100, 100);
movie.frames = new ArrayList();
movie.productInfo = new ProductInfo(time);
me.export(movie);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
te.writeTo(bos);
// decode the movie and save the compilation time in the special handler
ProductInfoTagHandler decodeHandler = new ProductInfoTagHandler();
TagDecoder decoder = new TagDecoder(new ByteArrayInputStream(bos.toByteArray()));
decoder.parse(decodeHandler);
// verify that the compilation time after encode/decode is the same as when you set it
assertEquals("time should be equivalent", time, decodeHandler.getProductInfo().getCompileDate());
}
}