blob: bce9d0b2b21e275099e423555e6900cb8b6a9600 [file] [log] [blame]
/*
* Copyright (c) 2011 Google Inc.
*
* All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
* Public License v1.0 which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*/
package com.google.eclipse.protobuf.ui.contentassist;
import static java.util.Arrays.asList;
import java.util.*;
import org.eclipse.xtext.naming.QualifiedName;
import org.eclipse.xtext.resource.IEObjectDescription;
import org.hamcrest.*;
/**
* @author alruiz@google.com (Alex Ruiz)
*/
public class IEObjectDescriptionsHaveNames extends BaseMatcher<Collection<IEObjectDescription>> {
private final List<String> qualifiedNames;
public static IEObjectDescriptionsHaveNames containOnly(String...names) {
return new IEObjectDescriptionsHaveNames(names);
}
private IEObjectDescriptionsHaveNames(String[] qualifiedNames) {
this.qualifiedNames = new ArrayList<String>(asList(qualifiedNames));
}
/** {@inheritDoc} */
@Override @SuppressWarnings("unchecked")
public boolean matches(Object arg) {
if (!(arg instanceof Collection)) {
return false;
}
Collection<IEObjectDescription> descriptions = (Collection<IEObjectDescription>) arg;
List<String> copyOfNames = new ArrayList<String>(qualifiedNames);
if (copyOfNames.size() != descriptions.size()) {
return false;
}
for (IEObjectDescription description : descriptions) {
QualifiedName qualifiedName = description.getName();
if (qualifiedName == null) {
continue;
}
if (!copyOfNames.remove(qualifiedName.toString())) {
return false;
}
}
return copyOfNames.isEmpty();
}
/** {@inheritDoc} */
@Override public void describeTo(Description description) {
description.appendValue(qualifiedNames);
}
}