blob: d01caa5cb11ea4dc3024583228e6f50ff1525ce8 [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 com.taobao.weex.ui.component;
import com.taobao.weappplus_sdk.BuildConfig;
import com.taobao.weex.WXSDKInstanceTest;
import com.taobao.weex.common.Constants;
import com.taobao.weex.ui.SimpleComponentHolder;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PowerMockIgnore;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;
import java.lang.reflect.InvocationTargetException;
/**
* Created by sospartan on 8/10/16.
*/
@RunWith(RobolectricTestRunner.class)
@Config(constants = BuildConfig.class, sdk = 19)
@PowerMockIgnore( {"org.mockito.*", "org.robolectric.*", "android.*"})
public class WXVideoTest {
WXVideo component;
static final String[] PROPS = {
Constants.Name.PLAY_STATUS,
Constants.Name.AUTO_PLAY,
"unknown",
Constants.Name.SRC,
};
static final Object[][] VALUES = {
{"", Constants.Value.PLAY, Constants.Value.PAUSE,Constants.Value.STOP,null},
{"","true","false",true,false,null},
{null,"","test"},
{"","http://taobao.com","0",100,null},
};
public static WXVideo create() throws IllegalAccessException, InstantiationException, InvocationTargetException {
return (WXVideo) new SimpleComponentHolder(WXVideo.class)
.createInstance(WXSDKInstanceTest.createInstance(), new TestDomObject(), WXDivTest.create());
}
@Before
public void setUp() throws Exception {
component = create();
ComponentTest.create(component);
}
@After
public void tearDown() throws Exception {
ComponentTest.destory(component);
}
@Test
public void testSetProperty() throws Exception {
component.mPrepared = true;
ComponentTest.setProperty(component,PROPS,VALUES);
}
}