Search in sources :

Example 1 with JvmBindingParam

use of com.alipay.sofa.runtime.service.binding.JvmBindingParam in project sofa-boot by sofastack.

the class ClientFactoryTest method testBindingInstanceIsNotAssignableFromInterfaceType.

@Test
public void testBindingInstanceIsNotAssignableFromInterfaceType() throws IOException {
    String logRootPath = StringUtils.hasText(System.getProperty("logging.path")) ? System.getProperty("logging.path") : "./logs";
    File sofaLog = new File(logRootPath + File.separator + "sofa-runtime" + File.separator + "sofa-default.log");
    FileUtils.write(sofaLog, "", System.getProperty("file.encoding"));
    SofaRuntimeProperties.setServiceInterfaceTypeCheck(true);
    JvmBindingParam jvmBindingParam = new JvmBindingParam();
    jvmBindingParam.setSerialize(true);
    ServiceParam serviceParam = new ServiceParam();
    serviceParam.setInstance(new Object());
    serviceParam.setInterfaceType(SampleService.class);
    serviceParam.addBindingParam(jvmBindingParam);
    serviceClient.service(serviceParam);
    String content = FileUtils.readFileToString(sofaLog, System.getProperty("file.encoding"));
    Assert.assertTrue(content.contains("SOFA-BOOT-01-00104: Bean " + "[com.alipay.sofa.runtime.test.beans.facade.SampleService] " + "type is [class java.lang.Object] not isAssignableFrom " + "[interface com.alipay.sofa.runtime.test.beans.facade.SampleService] , please check it"));
}
Also used : File(java.io.File) ServiceParam(com.alipay.sofa.runtime.api.client.param.ServiceParam) JvmBindingParam(com.alipay.sofa.runtime.service.binding.JvmBindingParam) Test(org.junit.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest)

Example 2 with JvmBindingParam

use of com.alipay.sofa.runtime.service.binding.JvmBindingParam in project sofa-boot by sofastack.

the class ClientFactoryTest method testWithBindingParam.

/**
 * test WithBindingParam in ReferenceClientImpl and ServiceClientImpl
 */
@Test
public void testWithBindingParam() {
    JvmBindingParam jvmBindingParam = new JvmBindingParam();
    jvmBindingParam.setSerialize(true);
    ServiceParam serviceParam = new ServiceParam();
    serviceParam.setInstance(new DefaultSampleService("WithBindingParam"));
    serviceParam.setInterfaceType(SampleService.class);
    serviceParam.setUniqueId("withBindingParam");
    serviceParam.addBindingParam(jvmBindingParam);
    serviceClient.service(serviceParam);
    try {
        Thread.sleep(2000);
    } catch (Exception e) {
    // ignore
    }
    ReferenceParam<SampleService> referenceParam = new ReferenceParam<>();
    referenceParam.setInterfaceType(SampleService.class);
    referenceParam.setUniqueId("withBindingParam");
    referenceParam.setBindingParam(jvmBindingParam);
    SampleService service = referenceClient.reference(referenceParam);
    Assert.assertNotNull(service);
    Assert.assertEquals("WithBindingParam", service.service());
}
Also used : DefaultSampleService(com.alipay.sofa.runtime.test.beans.service.DefaultSampleService) DefaultSampleService(com.alipay.sofa.runtime.test.beans.service.DefaultSampleService) SampleService(com.alipay.sofa.runtime.test.beans.facade.SampleService) ReferenceParam(com.alipay.sofa.runtime.api.client.param.ReferenceParam) ServiceParam(com.alipay.sofa.runtime.api.client.param.ServiceParam) IOException(java.io.IOException) JvmBindingParam(com.alipay.sofa.runtime.service.binding.JvmBindingParam) Test(org.junit.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest)

Example 3 with JvmBindingParam

use of com.alipay.sofa.runtime.service.binding.JvmBindingParam in project sofa-boot by sofastack.

the class ReferenceFactoryBean method doAfterPropertiesSet.

@Override
protected void doAfterPropertiesSet() throws Exception {
    Reference reference = buildReference();
    Assert.isTrue(bindings.size() <= 1, "Found more than one binding in <sofa:reference/>, <sofa:reference/> can only have one binding.");
    // default add jvm binding and reference jvm binding should set serialize as false
    if (bindings.size() == 0) {
        // default reference prefer to ignore serialize
        JvmBindingParam jvmBindingParam = new JvmBindingParam();
        jvmBindingParam.setSerialize(false);
        bindings.add(new JvmBinding().setJvmBindingParam(jvmBindingParam));
    }
    reference.addBinding(bindings.get(0));
    proxy = ReferenceRegisterHelper.registerReference(reference, bindingAdapterFactory, sofaRuntimeContext, applicationContext);
}
Also used : Reference(com.alipay.sofa.runtime.service.component.Reference) JvmBindingParam(com.alipay.sofa.runtime.service.binding.JvmBindingParam) JvmBinding(com.alipay.sofa.runtime.service.binding.JvmBinding)

Example 4 with JvmBindingParam

use of com.alipay.sofa.runtime.service.binding.JvmBindingParam in project sofa-boot by alipay.

the class ReferenceFactoryBean method doAfterPropertiesSet.

@Override
protected void doAfterPropertiesSet() throws Exception {
    Reference reference = buildReference();
    Assert.isTrue(bindings.size() <= 1, "Found more than one binding in <sofa:reference/>, <sofa:reference/> can only have one binding.");
    // default add jvm binding and reference jvm binding should set serialize as false
    if (bindings.size() == 0) {
        // default reference prefer to ignore serialize
        JvmBindingParam jvmBindingParam = new JvmBindingParam();
        jvmBindingParam.setSerialize(false);
        bindings.add(new JvmBinding().setJvmBindingParam(jvmBindingParam));
    }
    reference.addBinding(bindings.get(0));
    proxy = ReferenceRegisterHelper.registerReference(reference, bindingAdapterFactory, sofaRuntimeContext, applicationContext);
}
Also used : Reference(com.alipay.sofa.runtime.service.component.Reference) JvmBindingParam(com.alipay.sofa.runtime.service.binding.JvmBindingParam) JvmBinding(com.alipay.sofa.runtime.service.binding.JvmBinding)

Example 5 with JvmBindingParam

use of com.alipay.sofa.runtime.service.binding.JvmBindingParam in project sofa-boot by alipay.

the class ClientFactoryTest method testWithBindingParam.

/**
 * test WithBindingParam in ReferenceClientImpl and ServiceClientImpl
 */
@Test
public void testWithBindingParam() {
    JvmBindingParam jvmBindingParam = new JvmBindingParam();
    jvmBindingParam.setSerialize(true);
    ServiceParam serviceParam = new ServiceParam();
    serviceParam.setInstance(new DefaultSampleService("WithBindingParam"));
    serviceParam.setInterfaceType(SampleService.class);
    serviceParam.setUniqueId("withBindingParam");
    serviceParam.addBindingParam(jvmBindingParam);
    serviceClient.service(serviceParam);
    try {
        Thread.sleep(2000);
    } catch (Exception e) {
    // ignore
    }
    ReferenceParam<SampleService> referenceParam = new ReferenceParam<>();
    referenceParam.setInterfaceType(SampleService.class);
    referenceParam.setUniqueId("withBindingParam");
    referenceParam.setBindingParam(jvmBindingParam);
    SampleService service = referenceClient.reference(referenceParam);
    Assert.assertNotNull(service);
    Assert.assertEquals("WithBindingParam", service.service());
}
Also used : DefaultSampleService(com.alipay.sofa.runtime.test.beans.service.DefaultSampleService) DefaultSampleService(com.alipay.sofa.runtime.test.beans.service.DefaultSampleService) SampleService(com.alipay.sofa.runtime.test.beans.facade.SampleService) ReferenceParam(com.alipay.sofa.runtime.api.client.param.ReferenceParam) ServiceParam(com.alipay.sofa.runtime.api.client.param.ServiceParam) IOException(java.io.IOException) JvmBindingParam(com.alipay.sofa.runtime.service.binding.JvmBindingParam) Test(org.junit.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest)

Aggregations

JvmBindingParam (com.alipay.sofa.runtime.service.binding.JvmBindingParam)10 JvmBinding (com.alipay.sofa.runtime.service.binding.JvmBinding)6 ServiceRuntimeException (com.alipay.sofa.runtime.api.ServiceRuntimeException)4 ServiceParam (com.alipay.sofa.runtime.api.client.param.ServiceParam)4 Reference (com.alipay.sofa.runtime.service.component.Reference)4 Binding (com.alipay.sofa.runtime.spi.binding.Binding)4 Test (org.junit.Test)4 SpringBootTest (org.springframework.boot.test.context.SpringBootTest)4 BindingParam (com.alipay.sofa.runtime.api.client.param.BindingParam)2 ReferenceParam (com.alipay.sofa.runtime.api.client.param.ReferenceParam)2 ServiceComponent (com.alipay.sofa.runtime.service.component.ServiceComponent)2 ReferenceImpl (com.alipay.sofa.runtime.service.component.impl.ReferenceImpl)2 ComponentInfo (com.alipay.sofa.runtime.spi.component.ComponentInfo)2 DefaultImplementation (com.alipay.sofa.runtime.spi.component.DefaultImplementation)2 Implementation (com.alipay.sofa.runtime.spi.component.Implementation)2 BindingConverter (com.alipay.sofa.runtime.spi.service.BindingConverter)2 BindingConverterContext (com.alipay.sofa.runtime.spi.service.BindingConverterContext)2 SampleService (com.alipay.sofa.runtime.test.beans.facade.SampleService)2 DefaultSampleService (com.alipay.sofa.runtime.test.beans.service.DefaultSampleService)2 File (java.io.File)2