use of org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleSheet in project webtools.sourceediting by eclipse.
the class StyleSheetTest method testImportMethods.
/**
* Tests that imports can be resolved using the various syntaxes for import.
* <ul>
* <li>@import url("example.css");</li>
* <li>@import url(example.css);</li>
* <li>@import "example.css";</li>
* </ul>
* @throws Exception
*/
public void testImportMethods() throws Exception {
String filePath = "/" + PROJECT_NAME + "/WebContent/importMethods.css";
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path(filePath));
assertTrue("File doesn't exist: " + filePath, file.exists());
IStructuredModel model = null;
try {
model = StructuredModelManager.getModelManager().getModelForRead(file);
if (model instanceof ICSSModel) {
ICSSDocument document = ((ICSSModel) model).getDocument();
if (document instanceof ICSSStyleSheet) {
CSSRuleList list = ((ICSSStyleSheet) document).getCssRules(true);
assertTrue("There should be a total of 3 rules.", list.getLength() == 3);
for (int i = 0; i < list.getLength(); i++) {
CSSRule rule = list.item(i);
assertTrue("Rule should be a style rule. rule.getType() == " + rule.getType(), rule.getType() == ICSSNode.STYLERULE_NODE);
CSSStyleRule style = (CSSStyleRule) rule;
assertEquals("Selector text did not match.", "#content", style.getSelectorText().trim());
}
}
}
} finally {
if (model != null)
model.releaseFromRead();
}
}
use of org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleSheet in project webtools.sourceediting by eclipse.
the class StyleSheetTest method testNonExistentImport.
/**
* Tests for the import of a non-existent stylesheet
* @throws Exception
*/
public void testNonExistentImport() throws Exception {
String filePath = "/" + PROJECT_NAME + "/WebContent/importDNE.css";
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path(filePath));
assertTrue("File doesn't exist: " + filePath, file.exists());
IStructuredModel model = null;
try {
model = StructuredModelManager.getModelManager().getModelForRead(file);
if (model instanceof ICSSModel) {
ICSSDocument document = ((ICSSModel) model).getDocument();
if (document instanceof ICSSStyleSheet) {
CSSRuleList list = ((ICSSStyleSheet) document).getCssRules(true);
assertTrue("There should be a total of 1 rule.", list.getLength() == 1);
CSSRule rule = list.item(0);
assertTrue("Rule should be a style rule. rule.getType() == " + rule.getType(), rule.getType() == ICSSNode.IMPORTRULE_NODE);
assertEquals("Stylesheet reference is different than expected.", ((CSSImportRule) rule).getHref(), "thisfiledoesntexist.css");
}
}
} finally {
if (model != null)
model.releaseFromRead();
}
}
use of org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleSheet in project webtools.sourceediting by eclipse.
the class StyleSheetTest method testSimpleImport.
/**
* Tests the simple case of a basic @import or a stylesheet
* @throws Exception
*/
public void testSimpleImport() throws Exception {
String filePath = "/" + PROJECT_NAME + "/WebContent/site.css";
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path(filePath));
assertTrue("File doesn't exist: " + filePath, file.exists());
IStructuredModel model = null;
try {
model = StructuredModelManager.getModelManager().getModelForRead(file);
if (model instanceof ICSSModel) {
ICSSDocument document = ((ICSSModel) model).getDocument();
if (document instanceof ICSSStyleSheet) {
CSSRuleList list = ((ICSSStyleSheet) document).getCssRules(true);
String[] rules = new String[] { "#content", "a", "a:hover" };
assertTrue("There should be a total of 3 rules supplied stylesheet.", list.getLength() == rules.length);
for (int i = 0; i < list.getLength(); i++) {
CSSRule rule = list.item(i);
assertTrue("Rule should be a style rule. rule.getType() == " + rule.getType(), rule.getType() == ICSSNode.STYLERULE_NODE);
CSSStyleRule style = (CSSStyleRule) rule;
assertEquals("Selector text did not match.", rules[i], style.getSelectorText().trim());
}
}
}
} finally {
if (model != null)
model.releaseFromRead();
}
}
use of org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleSheet in project webtools.sourceediting by eclipse.
the class CSSStyleNotifyAdapter method addStyleListener.
/**
*/
public void addStyleListener(ICSSStyleListener listener) {
if (listener == null)
return;
if (listeners == null)
listeners = new Vector();
if (!listeners.contains(listener)) {
// send new selectors event to listener
ImportedCollector trav = new ImportedCollector();
trav.apply(model.getDocument());
Iterator it = trav.getExternals().iterator();
while (it.hasNext()) {
ICSSStyleSheet sheet = (ICSSStyleSheet) it.next();
// collect selectors
SelectorsCollector selTrav = new SelectorsCollector();
selTrav.apply(sheet);
int nSel = selTrav.getSelectors().size();
ICSSSelector[] added = new ICSSSelector[nSel];
for (int i = 0; i < nSel; i++) added[i] = (ICSSSelector) selTrav.getSelectors().get(i);
// fire event
CSSStyleEventDeliverer deliverer = new CSSStyleEventDeliverer();
deliverer.fireTo(listener, sheet.getModel(), null, added, null);
}
// add listener
listeners.add(listener);
}
}
use of org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleSheet in project webtools.sourceediting by eclipse.
the class CSSStyleNotifyAdapter method removeStyleListener.
/**
*/
public void removeStyleListener(ICSSStyleListener listener) {
if (listener == null)
return;
if (listeners.contains(listener)) {
listeners.remove(listener);
// send old selectors event to listener
ImportedCollector trav = new ImportedCollector();
trav.apply(model.getDocument());
Iterator it = trav.getExternals().iterator();
while (it.hasNext()) {
ICSSStyleSheet sheet = (ICSSStyleSheet) it.next();
// collect selectors
SelectorsCollector selTrav = new SelectorsCollector();
selTrav.apply(sheet);
int nSel = selTrav.getSelectors().size();
ICSSSelector[] removed = new ICSSSelector[nSel];
for (int i = 0; i < nSel; i++) removed[i] = (ICSSSelector) selTrav.getSelectors().get(i);
// fire event
CSSStyleEventDeliverer deliverer = new CSSStyleEventDeliverer();
deliverer.fireTo(listener, sheet.getModel(), removed, null, null);
}
}
}
Aggregations