/*
 * 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 org.apache.freemarker.onlinetester.view;

import static org.junit.Assert.assertEquals;

import java.util.Locale;
import java.util.TimeZone;

import org.junit.Test;

import org.apache.freemarker.onlinetester.services.AllowedSettingValues;

import freemarker.core.HTMLOutputFormat;


public class FreeMarkerOnlineViewTest {

    private static final String TEMPLATE = "Template";
    private static final String DATA_MODEL = "DataModel";

    @Test
    public void testVieEmptyConstrucotr() {
        FreeMarkerOnlineView view = new FreeMarkerOnlineView();
        assertEquals(view.getTemplate(), "");
        assertEquals(view.getDataModel(), "");
        assertEquals(view.getOutputFormat(), AllowedSettingValues.DEFAULT_OUTPUT_FORMAT_KEY);
        assertEquals(view.getLocale(), AllowedSettingValues.DEFAULT_LOCALE_KEY);
        assertEquals(view.getTimeZone(), AllowedSettingValues.DEFAULT_TIME_ZONE_KEY);
    }

    @Test
    public void testViewWhenAllOK() {
        FreeMarkerOnlineView view = new FreeMarkerOnlineView();
        
        view.setTemplate(TEMPLATE);
        view.setDataModel(DATA_MODEL);
        String outputFormatStr = HTMLOutputFormat.INSTANCE.getName();
        view.setOutputFormat(outputFormatStr);
        String localeStr = Locale.GERMAN.toString();
        view.setLocale(localeStr);
        String timeZoneStr = TimeZone.getTimeZone("GMT+01").getID();
        view.setTimeZone(timeZoneStr);
        
        assertEquals(view.getTemplate(), TEMPLATE);
        assertEquals(view.getDataModel(), DATA_MODEL);
        assertEquals(view.getOutputFormat(), outputFormatStr);
        assertEquals(view.getLocale(), localeStr);
        assertEquals(view.getTimeZone(), timeZoneStr);
    }
    
}