diff options
author | Artur <artur@vaadin.com> | 2017-04-13 10:26:13 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-04-13 10:26:13 +0300 |
commit | 71e4d797fe6a3629f9e489b06e2566e139577bfd (patch) | |
tree | b72de5971ca0502303d11a9cb74d348916b2f818 /uitest | |
parent | 4454e6bdc13dec8198c9e5e95557fcf59f9f97e4 (diff) | |
download | vaadin-framework-71e4d797fe6a3629f9e489b06e2566e139577bfd.tar.gz vaadin-framework-71e4d797fe6a3629f9e489b06e2566e139577bfd.zip |
Notify a resource load listener many times if it has been added many times (#9075)
This is what the javadoc promises and what DependencyLoader relies on
Diffstat (limited to 'uitest')
2 files changed, 79 insertions, 0 deletions
diff --git a/uitest/src/main/java/com/vaadin/tests/components/javascriptcomponent/DuplicateJavascriptDependencies.java b/uitest/src/main/java/com/vaadin/tests/components/javascriptcomponent/DuplicateJavascriptDependencies.java new file mode 100644 index 0000000000..caffe145f2 --- /dev/null +++ b/uitest/src/main/java/com/vaadin/tests/components/javascriptcomponent/DuplicateJavascriptDependencies.java @@ -0,0 +1,45 @@ +/* + * Copyright 2000-2016 Vaadin Ltd. + * + * 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 com.vaadin.tests.components.javascriptcomponent; + +import com.vaadin.annotations.JavaScript; +import com.vaadin.annotations.Widgetset; +import com.vaadin.server.VaadinRequest; +import com.vaadin.tests.components.AbstractTestUIWithLog; +import com.vaadin.ui.Button; +import com.vaadin.ui.Label; + +@JavaScript({ "notfound.js", "notfound.js" }) +@Widgetset("com.vaadin.DefaultWidgetSet") +public class DuplicateJavascriptDependencies extends AbstractTestUIWithLog { + + @JavaScript({ "notfound2.js", "notfound2.js" }) + public static class ResultLabel extends Label { + + public ResultLabel(String text) { + super(text); + setId("result"); + } + } + + @Override + protected void setup(VaadinRequest request) { + addComponent(new Button("Test", e -> { + addComponent(new ResultLabel("It works")); + })); + } + +} diff --git a/uitest/src/test/java/com/vaadin/tests/components/javascriptcomponent/DuplicateJavascriptDependenciesTest.java b/uitest/src/test/java/com/vaadin/tests/components/javascriptcomponent/DuplicateJavascriptDependenciesTest.java new file mode 100644 index 0000000000..652cd75e03 --- /dev/null +++ b/uitest/src/test/java/com/vaadin/tests/components/javascriptcomponent/DuplicateJavascriptDependenciesTest.java @@ -0,0 +1,34 @@ +/* + * Copyright 2000-2016 Vaadin Ltd. + * + * 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 com.vaadin.tests.components.javascriptcomponent; + +import org.junit.Assert; +import org.junit.Test; + +import com.vaadin.testbench.elements.ButtonElement; +import com.vaadin.testbench.elements.LabelElement; +import com.vaadin.tests.tb3.SingleBrowserTest; + +public class DuplicateJavascriptDependenciesTest extends SingleBrowserTest { + + @Test + public void duplicateJavascriptsDoNotCauseProblems() { + openTestURL(); + $(ButtonElement.class).first().click(); + Assert.assertEquals("It works", + $(LabelElement.class).id("result").getText()); + } +} |