Skip to content

Commit

Permalink
Add broken test for WELD-333.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbogoevici committed Dec 8, 2009
1 parent a80c21e commit 49d9449
Show file tree
Hide file tree
Showing 6 changed files with 190 additions and 0 deletions.
@@ -0,0 +1,26 @@
/*
* JBoss, Home of Professional Open Source
* Copyright <Year>, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* 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 org.jboss.weld.tests.decorators.decoratedTypes;

/**
* @author Marius Bogoevici
*/
public interface Decorated
{
void decoratedMethod();
}
@@ -0,0 +1,26 @@
/*
* JBoss, Home of Professional Open Source
* Copyright <Year>, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* 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 org.jboss.weld.tests.decorators.decoratedTypes;

/**
* @author Marius Bogoevici
*/
public interface NotDecorated
{
void notDecoratedMethod();
}
@@ -0,0 +1,51 @@
/*
* JBoss, Home of Professional Open Source
* Copyright <Year>, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* 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 org.jboss.weld.tests.decorators.decoratedTypes;

import javax.decorator.Decorator;
import javax.decorator.Delegate;
import javax.inject.Inject;

/**
* @author Marius Bogoevici
*/
@Decorator
public class PartialDecorator implements Decorated
{

@Inject @Delegate TestBean delegate;

static boolean decoratedInvoked;

static boolean notDecoratedInvoked;

public void decoratedMethod()
{
decoratedInvoked = true;
delegate.decoratedMethod();
}

/**
* Should not be invoked
*/
public void notDecoratedMethod()
{
notDecoratedInvoked = true;
delegate.decoratedMethod();
}
}
@@ -0,0 +1,45 @@
/*
* JBoss, Home of Professional Open Source
* Copyright <Year>, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* 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 org.jboss.weld.tests.decorators.decoratedTypes;

import org.jboss.testharness.impl.packaging.Artifact;
import org.jboss.testharness.impl.packaging.jsr299.BeansXml;
import org.jboss.weld.test.AbstractWeldTest;
import org.testng.annotations.Test;

/**
* @author Marius Bogoevici
*/
@Artifact
@BeansXml("beans.xml")
public class PartialDecoratorTest extends AbstractWeldTest
{

@Test(groups = "broken")
public void testDecoratorDoesNotDecorateOutsideDecoratedTypes()
{
TestBean testBean = getCurrentManager().getInstanceByType(TestBean.class);
testBean.decoratedMethod();
testBean.notDecoratedMethod();

assert PartialDecorator.decoratedInvoked;
assert !PartialDecorator.notDecoratedInvoked;
assert TestBean.decoratedInvoked;
assert TestBean.notDecoratedInvoked;
}
}
@@ -0,0 +1,37 @@
/*
* JBoss, Home of Professional Open Source
* Copyright <Year>, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* 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 org.jboss.weld.tests.decorators.decoratedTypes;

/**
* @author Marius Bogoevici
*/
public class TestBean implements Decorated, NotDecorated
{
static boolean decoratedInvoked;
static boolean notDecoratedInvoked;

public void decoratedMethod()
{
decoratedInvoked = true;
}

public void notDecoratedMethod()
{
notDecoratedInvoked = true;
}
}
@@ -0,0 +1,5 @@
<beans>
<decorators>
<decorator>org.jboss.weld.tests.decorators.decoratedTypes.PartialDecorator</decorator>
</decorators>
</beans>

0 comments on commit 49d9449

Please sign in to comment.