How to use checkPropertyAccess method of org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor class

Best Cerberus-source code snippet using org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor.checkPropertyAccess

Source:RestrictiveGroovyInterceptor.java Github

copy

Full Screen

...295 if (receiver instanceof Class<?> && isAllowedClass((Class<?>) receiver)296 && !"class".equals(property)) {297 return super.onGetProperty(invoker, receiver, property);298 }299 checkPropertyAccess(receiver, property, false);300 return super.onGetProperty(invoker, receiver, property);301 }302 @Override303 public Object onSetProperty(Invoker invoker, Object receiver, String property, Object value)304 throws Throwable {305 if (disallowedWriteProperties.contains(property)) {306 throw new GroovyRestrictionException("setting the property " + property307 + " is not allowed in Groovy transformations!");308 }309 if (receiver instanceof Closure && disallowedClosureWriteProperties.contains(property)) {310 throw new GroovyRestrictionException("setting the closure property " + property311 + " is not allowed in Groovy transformations!");312 }313 checkPropertyAccess(receiver, property, true);314 return super.onSetProperty(invoker, receiver, property, value);315 }316 private boolean checkPropertyAccess(Object receiver, String property, boolean set)317 throws GroovyRestrictionException {318 if (receiver instanceof Closure) {319 // Closure properties were tested before.320 Closure<?> closure = (Closure<?>) receiver;321 Object owner = closure.getOwner();322 Object delegate = closure.getDelegate();323 int rs = closure.getResolveStrategy();324 // Check owner first.325 if (rs == Closure.OWNER_FIRST || rs == Closure.OWNER_ONLY) {326 if (checkPropertyAccess(owner, property, set)) {327 return true;328 }329 }330 // Check delegate first/second.331 if (rs == Closure.OWNER_FIRST || rs == Closure.DELEGATE_FIRST332 || rs == Closure.DELEGATE_ONLY) {333 if (delegate != null && delegate != closure) {334 if (checkPropertyAccess(delegate, property, set)) {335 return true;336 }337 }338 }339 // Check owner second.340 if (rs == Closure.DELEGATE_FIRST) {341 if (checkPropertyAccess(owner, property, set)) {342 return true;343 }344 }345 // Cannot be 100% sure whether the property will be handled by346 // delegation to this closure.347 return false;348 } else if (instanceAllAllowedClasses.contains(receiver.getClass())) {349 return true;350 } else if (isAllowedClass(receiver.getClass())) {351 return hasProperty(receiver, property);352 } else if (isScriptClass(receiver.getClass())353 && (!set || !disallowedScriptWriteProperties.contains(property))) {354 return hasProperty(receiver, property);355 }356 throw new GroovyRestrictionException("Possible " + (set ? "write " : "")357 + "access of property " + property + " on class "358 + receiver.getClass().getSimpleName()359 + " is not allowed in Groovy transformations!");360 }361 @Override362 public Object onGetAttribute(Invoker invoker, Object receiver, String attribute)363 throws Throwable {364 checkPropertyAccess(receiver, attribute, false);365 return super.onGetAttribute(invoker, receiver, attribute);366 }367 @Override368 public Object onSetAttribute(Invoker invoker, Object receiver, String attribute, Object value)369 throws Throwable {370 if (disallowedWriteProperties.contains(attribute)) {371 throw new GroovyRestrictionException("setting the property " + attribute372 + " is not allowed in Groovy transformations!");373 }374 if (receiver instanceof Closure && disallowedClosureWriteProperties.contains(attribute)) {375 throw new GroovyRestrictionException("setting the closure property " + attribute376 + " is not allowed in Groovy transformations!");377 }378 checkPropertyAccess(receiver, attribute, true);379 return super.onSetAttribute(invoker, receiver, attribute, value);380 }381 @Override382 public Object onGetArray(Invoker invoker, Object receiver, Object index) throws Throwable {383 // generally allow array access for now384 return super.onGetArray(invoker, receiver, index);385 }386 @Override387 public Object onSetArray(Invoker invoker, Object receiver, Object index, Object value)388 throws Throwable {389 // generally allow array access for now390 return super.onSetArray(invoker, receiver, index, value);391 }392 private static boolean hasProperty(Object object, String property) {...

Full Screen

Full Screen

checkPropertyAccess

Using AI Code Generation

copy

Full Screen

1def checkPropertyAccess = { obj, property ->2 if (obj instanceof org.cerberus.crud.entity.TestCaseExecution) {3 result = checkPropertyAccessTestCaseExecution(obj, property)4 }5}6def checkPropertyAccessTestCaseExecution = { obj, property ->7 def user = getUser()8 def isSystem = user.getLogin().equals("SYSTEM")9 def isGod = user.getSystem().equals("Y")10 def isFromMyTeam = user.getTeamList().contains(obj.getTeam())11 def isFromMyApplication = user.getApplicationList().contains(obj.getApplication())12 def isFromMyCountry = user.getCountryList().contains(obj.getCountry())13 def isFromMyEnvironment = user.getEnvironmentList().contains(obj.getEnvironment())14 def isFromMyRobot = user.getRobotList().contains(obj.getRobot())15 def isFromMyRobotDecli = user.getRobotDecliList().contains(obj.getRobotDecli())16 def isFromMyRobotExecutor = user.getRobotExecutorList().contains(obj.getRobotExecutor())17 def isFromMyBrowser = user.getBrowserList().contains(obj.getBrowser())18 def isFromMyBrowserVersion = user.getBrowserVersionList().contains(obj.getBrowserVersion())19 def isFromMyPlatform = user.getPlatformList().contains(obj.getPlatform())20 def isFromMyTag = user.getTagList().contains(obj.getTag())21 def isFromMyBuild = user.getBuildList().contains(obj.getBuild())22 def isFromMyRevision = user.getRevisionList().contains(obj.getRevision())23 def isFromMyActive = user.getActiveList().contains(obj.getActive())24 def isFromMyControlStatus = user.getControlStatusList().contains(obj.getControlStatus())25 def isFromMyControlMessage = user.getControlMessageList().contains(obj.getControlMessage())26 def isFromMyControlProperty = user.getControlPropertyList().contains(obj.getControlProperty())27 def isFromMyStatus = user.getStatusList().contains(obj.getStatus())28 def isFromMyEnd = user.getEndList().contains(obj.getEnd())29 def isFromMyStart = user.getStartList().contains(obj.getStart())30 def isFromMyIp = user.getIpList().contains(obj.getIp())31 def isFromMyPort = user.getPortList().contains(obj.getPort())

Full Screen

Full Screen

checkPropertyAccess

Using AI Code Generation

copy

Full Screen

1def interceptor = new org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor()2def object = new org.cerberus.service.groovy.impl.TestObject()3def isAccessible = interceptor.checkPropertyAccess(property, object)4def interceptor = new org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor()5def object = new org.cerberus.service.groovy.impl.TestObject()6def isAccessible = interceptor.checkMethodAccess(method, object)7def interceptor = new org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor()8def object = new org.cerberus.service.groovy.impl.TestObject()9def isAccessible = interceptor.checkStaticMethodAccess(method, object)10def interceptor = new org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor()11def object = new org.cerberus.service.groovy.impl.TestObject()12def isAccessible = interceptor.checkConstructorAccess(constructor, object)13def interceptor = new org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor()14def object = new org.cerberus.service.groovy.impl.TestObject()15def isAccessible = interceptor.checkStaticConstructorAccess(constructor, object)

Full Screen

Full Screen

checkPropertyAccess

Using AI Code Generation

copy

Full Screen

1import org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor2class TestGroovyInterceptor {3 def test() {4 def obj = new TestGroovyInterceptor()5 def binding = new Binding([obj: obj])6 def script = new GroovyShell(binding).parse("obj.name = 'test'")7 def restrictiveGroovyInterceptor = new RestrictiveGroovyInterceptor()8 restrictiveGroovyInterceptor.setAllowedProperties(['name'])9 script.metaClass.mixin(restrictiveGroovyInterceptor)10 script.run()11 println(obj.name)12 }13}14TestGroovyInterceptor testGroovyInterceptor = new TestGroovyInterceptor()15testGroovyInterceptor.test()

Full Screen

Full Screen

checkPropertyAccess

Using AI Code Generation

copy

Full Screen

1import org.cerberus.service.groovy.impl.RestrictiveGroovyInterceptor2import org.cerberus.service.groovy.impl.RestrictedObject3import org.cerberus.service.groovy.impl.RestrictedProperty4def interceptor = new RestrictiveGroovyInterceptor()5def obj = new RestrictedObject()6obj.setProperty('name', 'test')7obj.setProperty('age', 30)8interceptor.checkPropertyAccess(obj, 'name', 'read')9interceptor.checkPropertyAccess(obj, 'age', 'read')10interceptor.checkPropertyAccess(obj, 'age', 'write')11interceptor.checkPropertyAccess(obj, 'name', 'write')12interceptor.checkPropertyAccess(obj, 'address', 'read')13interceptor.checkPropertyAccess(obj, 'address', 'write')14interceptor.checkPropertyAccess(obj, 'address', 'readwrite')15interceptor.checkPropertyAccess(obj, 'address', 'write')16interceptor.checkPropertyAccess(obj, 'address', 'read')17interceptor.checkPropertyAccess(obj, 'address', 'readwrite')18interceptor.checkPropertyAccess(obj, 'address', 'readwrite')19interceptor.checkPropertyAccess(obj, 'address', 'read')20interceptor.checkPropertyAccess(obj, 'address', 'write')21interceptor.checkPropertyAccess(obj,

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cerberus-source automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful