├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── linters.yml │ └── linux.yml ├── .gitignore ├── .golangci.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── amqp ├── amqpjobs │ ├── config.go │ ├── consumer.go │ ├── item.go │ ├── listener.go │ ├── rabbit_init.go │ └── redial.go ├── docs │ └── amqp_jobs.md └── plugin.go ├── beanstalk ├── beanstalkjobs │ ├── config.go │ ├── connection.go │ ├── consumer.go │ ├── item.go │ └── listen.go ├── docs │ └── beanstalk_jobs.md └── plugin.go ├── boltdb ├── boltjobs │ ├── config.go │ ├── consumer.go │ ├── item.go │ └── listener.go ├── boltkv │ ├── config.go │ └── driver.go ├── docs │ ├── boltdb_jobs.md │ ├── boltjobs.drawio │ └── job_lifecycle.md └── plugin.go ├── bors.toml ├── broadcast ├── config.go ├── doc │ └── broadcast_arch.drawio ├── plugin.go └── rpc.go ├── codecov.yml ├── config ├── configs │ ├── v2_6 │ │ ├── drivers.go │ │ └── v2.6.go │ └── v2_7 │ │ ├── drivers.go │ │ └── v2.7.go ├── docs │ └── config.md ├── plugin.go └── versions.go ├── fileserver ├── config.go ├── docs │ └── fileserver.md └── plugin.go ├── go.mod ├── go.sum ├── grpc ├── codec │ ├── codec.go │ └── codec_test.go ├── config.go ├── docs │ └── grpc.md ├── parser │ ├── message.proto │ ├── parse.go │ ├── parse_test.go │ ├── pong.proto │ ├── test.proto │ ├── test_import.proto │ └── test_nested │ │ ├── message.proto │ │ ├── pong.proto │ │ └── test_import.proto ├── plugin.go ├── protoc_plugins │ └── protoc-gen-php-grpc │ │ ├── main.go │ │ └── php │ │ ├── generate.go │ │ ├── keywords.go │ │ ├── ns.go │ │ └── template.go ├── proxy │ └── proxy.go └── server.go ├── http ├── acme.go ├── attributes │ └── attributes.go ├── config │ ├── acme.go │ ├── fcgi.go │ ├── http.go │ ├── http2.go │ ├── ip.go │ ├── tls.go │ ├── tls_config_test.go │ └── uploads_config.go ├── docs │ ├── cache.md │ ├── gzip.md │ ├── headers.md │ ├── http.md │ ├── new_relic.md │ ├── sendfile.md │ └── static.md ├── handler │ ├── errors.go │ ├── errors_windows.go │ ├── handler.go │ ├── parse.go │ ├── request.go │ ├── response.go │ └── uploads.go ├── http.go ├── metrics.go ├── middleware │ ├── cache │ │ ├── cache.go │ │ ├── config.go │ │ ├── const.go │ │ ├── directives │ │ │ ├── directives.go │ │ │ └── directives_test.go │ │ ├── doc.go │ │ ├── get.go │ │ ├── plugin.go │ │ ├── pool.go │ │ └── writer.go │ ├── gzip │ │ └── plugin.go │ ├── headers │ │ ├── config.go │ │ └── plugin.go │ ├── new_relic │ │ ├── config.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── plugin.go │ │ ├── splitter.go │ │ ├── splitter_test.go │ │ └── writer.go │ ├── prometheus │ │ ├── plugin.go │ │ └── writer.go │ ├── send │ │ └── plugin.go │ ├── static │ │ ├── config.go │ │ ├── etag.go │ │ └── plugin.go │ └── websockets │ │ ├── commands │ │ └── enums.go │ │ ├── config.go │ │ ├── connection │ │ └── connection.go │ │ ├── doc │ │ ├── broadcast.drawio │ │ └── doc.go │ │ ├── executor │ │ └── executor.go │ │ ├── origin.go │ │ ├── origin_test.go │ │ ├── plugin.go │ │ ├── pool │ │ └── workers_pool.go │ │ ├── validator │ │ └── access_validator.go │ │ └── wildcard.go ├── plugin.go ├── serve.go └── ssl.go ├── informer ├── plugin.go └── rpc.go ├── jobs ├── config.go ├── docs │ ├── jobs.md │ ├── jobs_arch.drawio │ └── response_protocol.md ├── listener.go ├── metrics.go ├── plugin.go ├── protocol │ ├── error.go │ ├── handler.go │ ├── qresp.go │ └── structs.go └── rpc.go ├── kv ├── config.go ├── doc │ └── kv.drawio ├── plugin.go └── rpc.go ├── logger ├── config.go ├── docs │ └── logger.md ├── encoder.go ├── enums.go ├── plugin.go └── std_log_adapter.go ├── memcached ├── memcachedkv │ ├── config.go │ └── driver.go └── plugin.go ├── memory ├── memoryhttpcache │ └── driver.go ├── memoryjobs │ ├── consumer.go │ └── item.go ├── memorykv │ ├── config.go │ └── kv.go ├── memorypubsub │ └── pubsub.go └── plugin.go ├── metrics ├── config.go ├── config_test.go ├── doc.go ├── plugin.go └── rpc.go ├── nats ├── docs │ └── nats.md ├── natsjobs │ ├── config.go │ ├── consumer.go │ ├── item.go │ └── listener.go └── plugin.go ├── redis ├── config.go ├── kv │ ├── config.go │ └── kv.go ├── plugin.go └── pubsub │ ├── channel.go │ ├── config.go │ └── pubsub.go ├── reload ├── config.go ├── plugin.go └── watcher.go ├── resetter ├── plugin.go └── rpc.go ├── rpc ├── config.go ├── doc │ └── plugin_arch.drawio └── plugin.go ├── server ├── config.go ├── docs │ └── server.md ├── oninit.go └── plugin.go ├── service ├── config.go ├── docs │ └── service.md ├── plugin.go ├── process.go └── state.go ├── sqs ├── docs │ └── sqs_jobs.md ├── plugin.go └── sqsjobs │ ├── config.go │ ├── consumer.go │ ├── item.go │ └── listener.go ├── status ├── config.go ├── plugin.go └── rpc.go ├── tcp ├── config.go ├── docs │ ├── tcp-flow.drawio │ └── tcp.md ├── handler │ ├── events.go │ ├── handler.go │ ├── helpers.go │ └── pool.go ├── plugin.go └── rpc.go └── tests ├── env ├── Dockerfile ├── Dockerfile-beanstalkd.yaml ├── Dockerfile-elastic-mq.yaml ├── custom.conf └── docker-compose.yaml ├── mock ├── logger.go └── observer.go ├── php_test_files ├── allocate-failed.php ├── broken.php ├── client.php ├── composer.json ├── delay.php ├── echo.php ├── error.php ├── exec_ttl.php ├── failboot.php ├── gzip-large-file.txt ├── head.php ├── http │ ├── client.php │ ├── cookie.php │ ├── data.php │ ├── echo.php │ ├── echoDelay.php │ ├── echoerr.php │ ├── env.php │ ├── error.php │ ├── error2.php │ ├── header.php │ ├── headers.php │ ├── ip.php │ ├── memleak.php │ ├── payload.php │ ├── pid.php │ ├── push.php │ ├── request-uri.php │ ├── server.php │ ├── slow-client.php │ ├── stuck.php │ ├── upload.php │ └── user-agent.php ├── idle.php ├── issue659.php ├── jobs_bad_resp.php ├── jobs_create_memory.php ├── jobs_err.php ├── jobs_ok.php ├── jobs_respond.php ├── jobs_respond_sqs.php ├── loop.php ├── memleak.php ├── metrics-issue-571.php ├── pid.php ├── psr-worker-all.php ├── psr-worker-bench.php ├── psr-worker-new_relic.php ├── psr-worker-post.php ├── psr-worker-slow.php ├── psr-worker-tcp-cont.php ├── psr-worker-tcp.php ├── psr-worker.php ├── raw-error.php ├── sleep-ttl.php ├── sleep.php ├── slow-client.php ├── slow-destroy.php ├── slow-pid.php ├── src │ ├── EchoService.php │ ├── GPBMetadata │ │ ├── Health.php │ │ └── Service.php │ ├── Health │ │ ├── HealthCheckRequest.php │ │ ├── HealthCheckResponse.php │ │ ├── HealthCheckResponse │ │ │ └── ServingStatus.php │ │ ├── HealthCheckResponse_ServingStatus.php │ │ └── HealthInterface.php │ ├── HealthService.php │ └── Service │ │ ├── EchoInterface.php │ │ └── Message.php ├── stop.php ├── supervised.php ├── temporal-worker.php ├── worker-cors.php ├── worker-deny.php ├── worker-grpc.php ├── worker-ok.php ├── worker-origin.php ├── worker-stop.php └── worker_new_relic.php ├── plugins ├── all │ └── bombers │ │ └── jobs │ │ └── main.go ├── broadcast │ ├── broadcast_plugin_test.go │ ├── configs │ │ ├── .rr-broadcast-config-error.yaml │ │ ├── .rr-broadcast-global.yaml │ │ ├── .rr-broadcast-init.yaml │ │ ├── .rr-broadcast-no-config.yaml │ │ └── .rr-broadcast-same-section.yaml │ └── plugins │ │ ├── plugin1.go │ │ ├── plugin2.go │ │ ├── plugin3.go │ │ ├── plugin4.go │ │ ├── plugin5.go │ │ └── plugin6.go ├── config │ ├── config_test.go │ ├── configs │ │ ├── .rr-env.yaml │ │ ├── .rr-init-version-2.7.yaml │ │ ├── .rr-init-version.yaml │ │ └── .rr.yaml │ ├── plugin1.go │ ├── plugin2.go │ └── plugin3.go ├── grpc │ ├── configs │ │ ├── .rr-grpc-init-duplicate-2.yaml │ │ ├── .rr-grpc-init-duplicate.yaml │ │ ├── .rr-grpc-init-multiple.yaml │ │ ├── .rr-grpc-init.yaml │ │ ├── .rr-grpc-rq-multiple.yaml │ │ ├── .rr-grpc-rq-tls-rootca.yaml │ │ ├── .rr-grpc-rq-tls.yaml │ │ ├── .rr-grpc-rq.yaml │ │ └── test-certs │ │ │ ├── ca.cert │ │ │ ├── ca.key │ │ │ ├── ca.srl │ │ │ ├── certificate.conf │ │ │ ├── test.csr │ │ │ ├── test.key │ │ │ └── test.pem │ ├── grpc_plugin_gzip_test.go │ ├── grpc_plugin_test.go │ ├── plugin_test.go │ ├── proto │ │ ├── external.proto │ │ ├── health │ │ │ ├── Makefile │ │ │ ├── health.pb.go │ │ │ ├── health.proto │ │ │ └── health_grpc.pb.go │ │ ├── service │ │ │ ├── service.pb.go │ │ │ ├── service.proto │ │ │ └── service_grpc.pb.go │ │ ├── test │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ └── test_dup │ │ │ ├── test_dup.pb.go │ │ │ └── test_dup.proto │ └── testdata │ │ ├── import │ │ ├── Import │ │ │ └── ServiceInterface.php │ │ ├── service.proto │ │ └── sub │ │ │ └── message.proto │ │ ├── import_custom │ │ ├── Test │ │ │ └── CustomImport │ │ │ │ └── ServiceInterface.php │ │ ├── service.proto │ │ └── sub │ │ │ └── message.proto │ │ ├── php_namespace │ │ ├── Test │ │ │ └── CustomNamespace │ │ │ │ └── ServiceInterface.php │ │ └── service.proto │ │ ├── simple │ │ ├── TestSimple │ │ │ └── SimpleServiceInterface.php │ │ └── simple.proto │ │ └── use_empty │ │ ├── Test │ │ └── ServiceInterface.php │ │ └── service.proto ├── gzip │ ├── configs │ │ ├── .rr-http-middlewareNotExist.yaml │ │ └── .rr-http-withGzip.yaml │ └── plugin_test.go ├── headers │ ├── configs │ │ ├── .rr-cors-headers.yaml │ │ ├── .rr-headers-init.yaml │ │ ├── .rr-req-headers.yaml │ │ └── .rr-res-headers.yaml │ └── headers_plugin_test.go ├── http │ ├── attributes_test.go │ ├── configs │ │ ├── .rr-big-req-size.yaml │ │ ├── .rr-broken-pipes.yaml │ │ ├── .rr-env.yaml │ │ ├── .rr-fcgi-reqUri.yaml │ │ ├── .rr-fcgi-unix.yaml │ │ ├── .rr-fcgi.yaml │ │ ├── .rr-h2c.yaml │ │ ├── .rr-http-access-logs.yaml │ │ ├── .rr-http-cache-requests.yaml │ │ ├── .rr-http-cache.yaml │ │ ├── .rr-http-init.yaml │ │ ├── .rr-http-ipv6-2.yaml │ │ ├── .rr-http-ipv6.yaml │ │ ├── .rr-http-new-relic.yaml │ │ ├── .rr-http-sendfile.yaml │ │ ├── .rr-http-static-disabled.yaml │ │ ├── .rr-http-static-etags.yaml │ │ ├── .rr-http-static-files-disable.yaml │ │ ├── .rr-http-static-files.yaml │ │ ├── .rr-http-static-new.yaml │ │ ├── .rr-http-static-security.yaml │ │ ├── .rr-http-static.yaml │ │ ├── .rr-http-supervised-pool.yaml │ │ ├── .rr-http.yaml │ │ ├── .rr-init.yaml │ │ ├── .rr-issue659.yaml │ │ ├── .rr-no-http.yaml │ │ ├── .rr-post-test.yaml │ │ ├── .rr-reset-forced.yaml │ │ ├── .rr-resetter.yaml │ │ ├── .rr-ssl-no-http.yaml │ │ ├── .rr-ssl-push.yaml │ │ ├── .rr-ssl-redirect.yaml │ │ └── .rr-ssl.yaml │ ├── fixtures │ │ ├── server.crt │ │ ├── server.key │ │ └── test-certs │ │ │ ├── ca.cert │ │ │ ├── ca.key │ │ │ ├── ca.srl │ │ │ ├── certificate.conf │ │ │ ├── test.csr │ │ │ ├── test.key │ │ │ └── test.pem │ ├── handler_test.go │ ├── http_plugin2_test.go │ ├── http_plugin_test.go │ ├── parse_test.go │ ├── plugin1.go │ ├── plugin_middleware.go │ └── uploads_test.go ├── informer │ ├── configs │ │ ├── .rr-informer-early-call.yaml │ │ └── .rr-informer.yaml │ ├── informer_test.go │ ├── test_plugin.go │ └── test_plugin_2.go ├── jobs │ ├── amqp │ │ ├── .rr-amqp-declare.yaml │ │ ├── .rr-amqp-init-br.yaml │ │ ├── .rr-amqp-init-v27-durable.yaml │ │ ├── .rr-amqp-init-v27.yaml │ │ ├── .rr-amqp-init.yaml │ │ ├── .rr-amqp-jobs-err.yaml │ │ ├── .rr-amqp-resp-jobs-ok.yaml │ │ └── .rr-no-global.yaml │ ├── beanstalk │ │ ├── .rr-beanstalk-declare.yaml │ │ ├── .rr-beanstalk-init-br.yaml │ │ ├── .rr-beanstalk-init-v27.yaml │ │ ├── .rr-beanstalk-init.yaml │ │ ├── .rr-beanstalk-jobs-err.yaml │ │ ├── .rr-beanstalk-respond.yaml │ │ └── .rr-no-global.yaml │ ├── boltdb │ │ ├── .rr-boltdb-declare.yaml │ │ ├── .rr-boltdb-init-v27-br.yaml │ │ ├── .rr-boltdb-init-v27.yaml │ │ ├── .rr-boltdb-init.yaml │ │ ├── .rr-boltdb-jobs-err.yaml │ │ └── .rr-no-global.yaml │ ├── configs │ │ ├── .rr-jobs-init.yaml │ │ └── .rr-jobs-metrics.yaml │ ├── durability │ │ ├── .rr-amqp-durability-redial.yaml │ │ ├── .rr-beanstalk-durability-redial.yaml │ │ ├── .rr-nats-durability-redial.yaml │ │ └── .rr-sqs-durability-redial.yaml │ ├── helpers.go │ ├── jobs_amqp_test.go │ ├── jobs_beanstalk_test.go │ ├── jobs_boltdb_test.go │ ├── jobs_general_test.go │ ├── jobs_memory_test.go │ ├── jobs_nats_test.go │ ├── jobs_sqs_test.go │ ├── jobs_with_toxics_test.go │ ├── memory │ │ ├── .rr-memory-create.yaml │ │ ├── .rr-memory-declare.yaml │ │ ├── .rr-memory-init-v27-br.yaml │ │ ├── .rr-memory-init-v27.yaml │ │ ├── .rr-memory-init.yaml │ │ ├── .rr-memory-jobs-err.yaml │ │ └── .rr-memory-pause-resume.yaml │ ├── nats │ │ ├── .rr-nats-declare.yaml │ │ ├── .rr-nats-init-v27-br.yaml │ │ ├── .rr-nats-init-v27.yaml │ │ ├── .rr-nats-init.yaml │ │ ├── .rr-nats-jobs-err.yaml │ │ ├── .rr-nats-respond.yaml │ │ ├── .rr-nats-stat.yaml │ │ └── .rr-no-global.yaml │ └── sqs │ │ ├── .rr-no-global.yaml │ │ ├── .rr-sqs-declare.yaml │ │ ├── .rr-sqs-init-v27-br.yaml │ │ ├── .rr-sqs-init-v27.yaml │ │ ├── .rr-sqs-init.yaml │ │ ├── .rr-sqs-jobs-err.yaml │ │ └── .rr-sqs-respond.yaml ├── kv │ ├── configs │ │ ├── .rr-boltdb.yaml │ │ ├── .rr-in-memory.yaml │ │ ├── .rr-kv-bolt-no-interval.yaml │ │ ├── .rr-kv-bolt-perms.yaml │ │ ├── .rr-kv-init.yaml │ │ ├── .rr-memcached.yaml │ │ ├── .rr-redis-global.yaml │ │ ├── .rr-redis-no-config.yaml │ │ └── .rr-redis.yaml │ └── storage_plugin_test.go ├── logger │ ├── configs │ │ ├── .rr-file-logger.yaml │ │ ├── .rr-no-logger.yaml │ │ ├── .rr-no-logger2.yaml │ │ ├── .rr-raw-mode.yaml │ │ └── .rr.yaml │ ├── logger_test.go │ └── plugin.go ├── metrics │ ├── configs │ │ ├── .rr-http-metrics-no-free-workers.yaml │ │ ├── .rr-http-metrics.yaml │ │ ├── .rr-issue-571.yaml │ │ └── .rr-test.yaml │ ├── metrics_test.go │ └── plugin1.go ├── reload │ ├── config_test.go │ ├── configs │ │ ├── .rr-reload-2.yaml │ │ ├── .rr-reload-3.yaml │ │ ├── .rr-reload-4.yaml │ │ └── .rr-reload.yaml │ └── reload_plugin_test.go ├── resetter │ ├── .rr-resetter.yaml │ ├── resetter_test.go │ └── test_plugin.go ├── rpc │ ├── config_test.go │ ├── configs │ │ ├── .rr-rpc-disabled.yaml │ │ └── .rr.yaml │ ├── plugin1.go │ ├── plugin2.go │ └── rpc_test.go ├── server │ ├── configs │ │ ├── .rr-no-app-section.yaml │ │ ├── .rr-sockets-on-init-fast-close.yaml │ │ ├── .rr-sockets-on-init.yaml │ │ ├── .rr-sockets.yaml │ │ ├── .rr-tcp-on-init.yaml │ │ ├── .rr-tcp.yaml │ │ ├── .rr-wrong-command-on-init.yaml │ │ ├── .rr-wrong-command.yaml │ │ ├── .rr-wrong-relay.yaml │ │ └── .rr.yaml │ ├── plugin_pipes.go │ ├── plugin_sockets.go │ ├── plugin_tcp.go │ ├── server_plugin_test.go │ ├── socket.php │ ├── tcp-on-init.php │ └── tcp.php ├── service │ ├── configs │ │ ├── .rr-service-env.yaml │ │ ├── .rr-service-error.yaml │ │ ├── .rr-service-init-stdout.yaml │ │ ├── .rr-service-init.yaml │ │ ├── .rr-service-init_win.yaml │ │ └── .rr-service-restarts.yaml │ ├── service_plugin_test.go │ └── test_files │ │ ├── loop.php │ │ ├── loop_env.php │ │ ├── loop_stdout.php │ │ └── test_binary ├── status │ ├── configs │ │ ├── .rr-ready-init.yaml │ │ └── .rr-status-init.yaml │ └── plugin_test.go ├── tcp │ ├── configs │ │ ├── .rr-tcp-close.yaml │ │ ├── .rr-tcp-empty.yaml │ │ ├── .rr-tcp-full.yaml │ │ └── .rr-tcp-init.yaml │ └── tcp_plugin_test.go └── websockets │ ├── configs │ ├── .rr-websockets-allow.yaml │ ├── .rr-websockets-allow2.yaml │ ├── .rr-websockets-broker-no-section.yaml │ ├── .rr-websockets-deny.yaml │ ├── .rr-websockets-deny2.yaml │ ├── .rr-websockets-init.yaml │ ├── .rr-websockets-redis.yaml │ └── .rr-websockets-stop.yaml │ └── websocket_plugin_test.go └── sample.txt /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/README.md -------------------------------------------------------------------------------- /amqp/amqpjobs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/amqpjobs/config.go -------------------------------------------------------------------------------- /amqp/amqpjobs/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/amqpjobs/consumer.go -------------------------------------------------------------------------------- /amqp/amqpjobs/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/amqpjobs/item.go -------------------------------------------------------------------------------- /amqp/amqpjobs/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/amqpjobs/listener.go -------------------------------------------------------------------------------- /amqp/amqpjobs/rabbit_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/amqpjobs/rabbit_init.go -------------------------------------------------------------------------------- /amqp/amqpjobs/redial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/amqpjobs/redial.go -------------------------------------------------------------------------------- /amqp/docs/amqp_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/docs/amqp_jobs.md -------------------------------------------------------------------------------- /amqp/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/amqp/plugin.go -------------------------------------------------------------------------------- /beanstalk/beanstalkjobs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/beanstalk/beanstalkjobs/config.go -------------------------------------------------------------------------------- /beanstalk/beanstalkjobs/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/beanstalk/beanstalkjobs/connection.go -------------------------------------------------------------------------------- /beanstalk/beanstalkjobs/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/beanstalk/beanstalkjobs/consumer.go -------------------------------------------------------------------------------- /beanstalk/beanstalkjobs/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/beanstalk/beanstalkjobs/item.go -------------------------------------------------------------------------------- /beanstalk/beanstalkjobs/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/beanstalk/beanstalkjobs/listen.go -------------------------------------------------------------------------------- /beanstalk/docs/beanstalk_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/beanstalk/docs/beanstalk_jobs.md -------------------------------------------------------------------------------- /beanstalk/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/beanstalk/plugin.go -------------------------------------------------------------------------------- /boltdb/boltjobs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/boltjobs/config.go -------------------------------------------------------------------------------- /boltdb/boltjobs/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/boltjobs/consumer.go -------------------------------------------------------------------------------- /boltdb/boltjobs/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/boltjobs/item.go -------------------------------------------------------------------------------- /boltdb/boltjobs/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/boltjobs/listener.go -------------------------------------------------------------------------------- /boltdb/boltkv/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/boltkv/config.go -------------------------------------------------------------------------------- /boltdb/boltkv/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/boltkv/driver.go -------------------------------------------------------------------------------- /boltdb/docs/boltdb_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/docs/boltdb_jobs.md -------------------------------------------------------------------------------- /boltdb/docs/boltjobs.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/docs/boltjobs.drawio -------------------------------------------------------------------------------- /boltdb/docs/job_lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/docs/job_lifecycle.md -------------------------------------------------------------------------------- /boltdb/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/boltdb/plugin.go -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/bors.toml -------------------------------------------------------------------------------- /broadcast/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/broadcast/config.go -------------------------------------------------------------------------------- /broadcast/doc/broadcast_arch.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/broadcast/doc/broadcast_arch.drawio -------------------------------------------------------------------------------- /broadcast/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/broadcast/plugin.go -------------------------------------------------------------------------------- /broadcast/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/broadcast/rpc.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/codecov.yml -------------------------------------------------------------------------------- /config/configs/v2_6/drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/config/configs/v2_6/drivers.go -------------------------------------------------------------------------------- /config/configs/v2_6/v2.6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/config/configs/v2_6/v2.6.go -------------------------------------------------------------------------------- /config/configs/v2_7/drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/config/configs/v2_7/drivers.go -------------------------------------------------------------------------------- /config/configs/v2_7/v2.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/config/configs/v2_7/v2.7.go -------------------------------------------------------------------------------- /config/docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/config/docs/config.md -------------------------------------------------------------------------------- /config/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/config/plugin.go -------------------------------------------------------------------------------- /config/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/config/versions.go -------------------------------------------------------------------------------- /fileserver/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/fileserver/config.go -------------------------------------------------------------------------------- /fileserver/docs/fileserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/fileserver/docs/fileserver.md -------------------------------------------------------------------------------- /fileserver/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/fileserver/plugin.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/go.sum -------------------------------------------------------------------------------- /grpc/codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/codec/codec.go -------------------------------------------------------------------------------- /grpc/codec/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/codec/codec_test.go -------------------------------------------------------------------------------- /grpc/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/config.go -------------------------------------------------------------------------------- /grpc/docs/grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/docs/grpc.md -------------------------------------------------------------------------------- /grpc/parser/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/message.proto -------------------------------------------------------------------------------- /grpc/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/parse.go -------------------------------------------------------------------------------- /grpc/parser/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/parse_test.go -------------------------------------------------------------------------------- /grpc/parser/pong.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/pong.proto -------------------------------------------------------------------------------- /grpc/parser/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/test.proto -------------------------------------------------------------------------------- /grpc/parser/test_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/test_import.proto -------------------------------------------------------------------------------- /grpc/parser/test_nested/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/test_nested/message.proto -------------------------------------------------------------------------------- /grpc/parser/test_nested/pong.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/test_nested/pong.proto -------------------------------------------------------------------------------- /grpc/parser/test_nested/test_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/parser/test_nested/test_import.proto -------------------------------------------------------------------------------- /grpc/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/plugin.go -------------------------------------------------------------------------------- /grpc/protoc_plugins/protoc-gen-php-grpc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/protoc_plugins/protoc-gen-php-grpc/main.go -------------------------------------------------------------------------------- /grpc/protoc_plugins/protoc-gen-php-grpc/php/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/protoc_plugins/protoc-gen-php-grpc/php/generate.go -------------------------------------------------------------------------------- /grpc/protoc_plugins/protoc-gen-php-grpc/php/keywords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/protoc_plugins/protoc-gen-php-grpc/php/keywords.go -------------------------------------------------------------------------------- /grpc/protoc_plugins/protoc-gen-php-grpc/php/ns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/protoc_plugins/protoc-gen-php-grpc/php/ns.go -------------------------------------------------------------------------------- /grpc/protoc_plugins/protoc-gen-php-grpc/php/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/protoc_plugins/protoc-gen-php-grpc/php/template.go -------------------------------------------------------------------------------- /grpc/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/proxy/proxy.go -------------------------------------------------------------------------------- /grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/grpc/server.go -------------------------------------------------------------------------------- /http/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/acme.go -------------------------------------------------------------------------------- /http/attributes/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/attributes/attributes.go -------------------------------------------------------------------------------- /http/config/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/acme.go -------------------------------------------------------------------------------- /http/config/fcgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/fcgi.go -------------------------------------------------------------------------------- /http/config/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/http.go -------------------------------------------------------------------------------- /http/config/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/http2.go -------------------------------------------------------------------------------- /http/config/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/ip.go -------------------------------------------------------------------------------- /http/config/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/tls.go -------------------------------------------------------------------------------- /http/config/tls_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/tls_config_test.go -------------------------------------------------------------------------------- /http/config/uploads_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/config/uploads_config.go -------------------------------------------------------------------------------- /http/docs/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/docs/cache.md -------------------------------------------------------------------------------- /http/docs/gzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/docs/gzip.md -------------------------------------------------------------------------------- /http/docs/headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/docs/headers.md -------------------------------------------------------------------------------- /http/docs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/docs/http.md -------------------------------------------------------------------------------- /http/docs/new_relic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/docs/new_relic.md -------------------------------------------------------------------------------- /http/docs/sendfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/docs/sendfile.md -------------------------------------------------------------------------------- /http/docs/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/docs/static.md -------------------------------------------------------------------------------- /http/handler/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/handler/errors.go -------------------------------------------------------------------------------- /http/handler/errors_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/handler/errors_windows.go -------------------------------------------------------------------------------- /http/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/handler/handler.go -------------------------------------------------------------------------------- /http/handler/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/handler/parse.go -------------------------------------------------------------------------------- /http/handler/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/handler/request.go -------------------------------------------------------------------------------- /http/handler/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/handler/response.go -------------------------------------------------------------------------------- /http/handler/uploads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/handler/uploads.go -------------------------------------------------------------------------------- /http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/http.go -------------------------------------------------------------------------------- /http/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/metrics.go -------------------------------------------------------------------------------- /http/middleware/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/cache.go -------------------------------------------------------------------------------- /http/middleware/cache/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/config.go -------------------------------------------------------------------------------- /http/middleware/cache/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/const.go -------------------------------------------------------------------------------- /http/middleware/cache/directives/directives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/directives/directives.go -------------------------------------------------------------------------------- /http/middleware/cache/directives/directives_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/directives/directives_test.go -------------------------------------------------------------------------------- /http/middleware/cache/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/doc.go -------------------------------------------------------------------------------- /http/middleware/cache/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/get.go -------------------------------------------------------------------------------- /http/middleware/cache/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/plugin.go -------------------------------------------------------------------------------- /http/middleware/cache/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/pool.go -------------------------------------------------------------------------------- /http/middleware/cache/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/cache/writer.go -------------------------------------------------------------------------------- /http/middleware/gzip/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/gzip/plugin.go -------------------------------------------------------------------------------- /http/middleware/headers/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/headers/config.go -------------------------------------------------------------------------------- /http/middleware/headers/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/headers/plugin.go -------------------------------------------------------------------------------- /http/middleware/new_relic/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/new_relic/config.go -------------------------------------------------------------------------------- /http/middleware/new_relic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/new_relic/error.go -------------------------------------------------------------------------------- /http/middleware/new_relic/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/new_relic/error_test.go -------------------------------------------------------------------------------- /http/middleware/new_relic/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/new_relic/plugin.go -------------------------------------------------------------------------------- /http/middleware/new_relic/splitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/new_relic/splitter.go -------------------------------------------------------------------------------- /http/middleware/new_relic/splitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/new_relic/splitter_test.go -------------------------------------------------------------------------------- /http/middleware/new_relic/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/new_relic/writer.go -------------------------------------------------------------------------------- /http/middleware/prometheus/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/prometheus/plugin.go -------------------------------------------------------------------------------- /http/middleware/prometheus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/prometheus/writer.go -------------------------------------------------------------------------------- /http/middleware/send/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/send/plugin.go -------------------------------------------------------------------------------- /http/middleware/static/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/static/config.go -------------------------------------------------------------------------------- /http/middleware/static/etag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/static/etag.go -------------------------------------------------------------------------------- /http/middleware/static/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/static/plugin.go -------------------------------------------------------------------------------- /http/middleware/websockets/commands/enums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/commands/enums.go -------------------------------------------------------------------------------- /http/middleware/websockets/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/config.go -------------------------------------------------------------------------------- /http/middleware/websockets/connection/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/connection/connection.go -------------------------------------------------------------------------------- /http/middleware/websockets/doc/broadcast.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/doc/broadcast.drawio -------------------------------------------------------------------------------- /http/middleware/websockets/doc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/doc/doc.go -------------------------------------------------------------------------------- /http/middleware/websockets/executor/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/executor/executor.go -------------------------------------------------------------------------------- /http/middleware/websockets/origin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/origin.go -------------------------------------------------------------------------------- /http/middleware/websockets/origin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/origin_test.go -------------------------------------------------------------------------------- /http/middleware/websockets/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/plugin.go -------------------------------------------------------------------------------- /http/middleware/websockets/pool/workers_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/pool/workers_pool.go -------------------------------------------------------------------------------- /http/middleware/websockets/validator/access_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/validator/access_validator.go -------------------------------------------------------------------------------- /http/middleware/websockets/wildcard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/middleware/websockets/wildcard.go -------------------------------------------------------------------------------- /http/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/plugin.go -------------------------------------------------------------------------------- /http/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/serve.go -------------------------------------------------------------------------------- /http/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/http/ssl.go -------------------------------------------------------------------------------- /informer/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/informer/plugin.go -------------------------------------------------------------------------------- /informer/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/informer/rpc.go -------------------------------------------------------------------------------- /jobs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/config.go -------------------------------------------------------------------------------- /jobs/docs/jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/docs/jobs.md -------------------------------------------------------------------------------- /jobs/docs/jobs_arch.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/docs/jobs_arch.drawio -------------------------------------------------------------------------------- /jobs/docs/response_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/docs/response_protocol.md -------------------------------------------------------------------------------- /jobs/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/listener.go -------------------------------------------------------------------------------- /jobs/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/metrics.go -------------------------------------------------------------------------------- /jobs/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/plugin.go -------------------------------------------------------------------------------- /jobs/protocol/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/protocol/error.go -------------------------------------------------------------------------------- /jobs/protocol/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/protocol/handler.go -------------------------------------------------------------------------------- /jobs/protocol/qresp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/protocol/qresp.go -------------------------------------------------------------------------------- /jobs/protocol/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/protocol/structs.go -------------------------------------------------------------------------------- /jobs/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/jobs/rpc.go -------------------------------------------------------------------------------- /kv/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/kv/config.go -------------------------------------------------------------------------------- /kv/doc/kv.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/kv/doc/kv.drawio -------------------------------------------------------------------------------- /kv/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/kv/plugin.go -------------------------------------------------------------------------------- /kv/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/kv/rpc.go -------------------------------------------------------------------------------- /logger/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/logger/config.go -------------------------------------------------------------------------------- /logger/docs/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/logger/docs/logger.md -------------------------------------------------------------------------------- /logger/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/logger/encoder.go -------------------------------------------------------------------------------- /logger/enums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/logger/enums.go -------------------------------------------------------------------------------- /logger/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/logger/plugin.go -------------------------------------------------------------------------------- /logger/std_log_adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/logger/std_log_adapter.go -------------------------------------------------------------------------------- /memcached/memcachedkv/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memcached/memcachedkv/config.go -------------------------------------------------------------------------------- /memcached/memcachedkv/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memcached/memcachedkv/driver.go -------------------------------------------------------------------------------- /memcached/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memcached/plugin.go -------------------------------------------------------------------------------- /memory/memoryhttpcache/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memory/memoryhttpcache/driver.go -------------------------------------------------------------------------------- /memory/memoryjobs/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memory/memoryjobs/consumer.go -------------------------------------------------------------------------------- /memory/memoryjobs/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memory/memoryjobs/item.go -------------------------------------------------------------------------------- /memory/memorykv/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memory/memorykv/config.go -------------------------------------------------------------------------------- /memory/memorykv/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memory/memorykv/kv.go -------------------------------------------------------------------------------- /memory/memorypubsub/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memory/memorypubsub/pubsub.go -------------------------------------------------------------------------------- /memory/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/memory/plugin.go -------------------------------------------------------------------------------- /metrics/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/metrics/config.go -------------------------------------------------------------------------------- /metrics/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/metrics/config_test.go -------------------------------------------------------------------------------- /metrics/doc.go: -------------------------------------------------------------------------------- 1 | package metrics 2 | -------------------------------------------------------------------------------- /metrics/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/metrics/plugin.go -------------------------------------------------------------------------------- /metrics/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/metrics/rpc.go -------------------------------------------------------------------------------- /nats/docs/nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/nats/docs/nats.md -------------------------------------------------------------------------------- /nats/natsjobs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/nats/natsjobs/config.go -------------------------------------------------------------------------------- /nats/natsjobs/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/nats/natsjobs/consumer.go -------------------------------------------------------------------------------- /nats/natsjobs/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/nats/natsjobs/item.go -------------------------------------------------------------------------------- /nats/natsjobs/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/nats/natsjobs/listener.go -------------------------------------------------------------------------------- /nats/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/nats/plugin.go -------------------------------------------------------------------------------- /redis/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/redis/config.go -------------------------------------------------------------------------------- /redis/kv/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/redis/kv/config.go -------------------------------------------------------------------------------- /redis/kv/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/redis/kv/kv.go -------------------------------------------------------------------------------- /redis/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/redis/plugin.go -------------------------------------------------------------------------------- /redis/pubsub/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/redis/pubsub/channel.go -------------------------------------------------------------------------------- /redis/pubsub/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/redis/pubsub/config.go -------------------------------------------------------------------------------- /redis/pubsub/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/redis/pubsub/pubsub.go -------------------------------------------------------------------------------- /reload/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/reload/config.go -------------------------------------------------------------------------------- /reload/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/reload/plugin.go -------------------------------------------------------------------------------- /reload/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/reload/watcher.go -------------------------------------------------------------------------------- /resetter/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/resetter/plugin.go -------------------------------------------------------------------------------- /resetter/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/resetter/rpc.go -------------------------------------------------------------------------------- /rpc/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/rpc/config.go -------------------------------------------------------------------------------- /rpc/doc/plugin_arch.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/rpc/doc/plugin_arch.drawio -------------------------------------------------------------------------------- /rpc/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/rpc/plugin.go -------------------------------------------------------------------------------- /server/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/server/config.go -------------------------------------------------------------------------------- /server/docs/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/server/docs/server.md -------------------------------------------------------------------------------- /server/oninit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/server/oninit.go -------------------------------------------------------------------------------- /server/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/server/plugin.go -------------------------------------------------------------------------------- /service/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/service/config.go -------------------------------------------------------------------------------- /service/docs/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/service/docs/service.md -------------------------------------------------------------------------------- /service/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/service/plugin.go -------------------------------------------------------------------------------- /service/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/service/process.go -------------------------------------------------------------------------------- /service/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/service/state.go -------------------------------------------------------------------------------- /sqs/docs/sqs_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/sqs/docs/sqs_jobs.md -------------------------------------------------------------------------------- /sqs/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/sqs/plugin.go -------------------------------------------------------------------------------- /sqs/sqsjobs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/sqs/sqsjobs/config.go -------------------------------------------------------------------------------- /sqs/sqsjobs/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/sqs/sqsjobs/consumer.go -------------------------------------------------------------------------------- /sqs/sqsjobs/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/sqs/sqsjobs/item.go -------------------------------------------------------------------------------- /sqs/sqsjobs/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/sqs/sqsjobs/listener.go -------------------------------------------------------------------------------- /status/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/status/config.go -------------------------------------------------------------------------------- /status/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/status/plugin.go -------------------------------------------------------------------------------- /status/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/status/rpc.go -------------------------------------------------------------------------------- /tcp/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/config.go -------------------------------------------------------------------------------- /tcp/docs/tcp-flow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/docs/tcp-flow.drawio -------------------------------------------------------------------------------- /tcp/docs/tcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/docs/tcp.md -------------------------------------------------------------------------------- /tcp/handler/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/handler/events.go -------------------------------------------------------------------------------- /tcp/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/handler/handler.go -------------------------------------------------------------------------------- /tcp/handler/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/handler/helpers.go -------------------------------------------------------------------------------- /tcp/handler/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/handler/pool.go -------------------------------------------------------------------------------- /tcp/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/plugin.go -------------------------------------------------------------------------------- /tcp/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tcp/rpc.go -------------------------------------------------------------------------------- /tests/env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/env/Dockerfile -------------------------------------------------------------------------------- /tests/env/Dockerfile-beanstalkd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/env/Dockerfile-beanstalkd.yaml -------------------------------------------------------------------------------- /tests/env/Dockerfile-elastic-mq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/env/Dockerfile-elastic-mq.yaml -------------------------------------------------------------------------------- /tests/env/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/env/custom.conf -------------------------------------------------------------------------------- /tests/env/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/env/docker-compose.yaml -------------------------------------------------------------------------------- /tests/mock/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/mock/logger.go -------------------------------------------------------------------------------- /tests/mock/observer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/mock/observer.go -------------------------------------------------------------------------------- /tests/php_test_files/allocate-failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/allocate-failed.php -------------------------------------------------------------------------------- /tests/php_test_files/broken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/broken.php -------------------------------------------------------------------------------- /tests/php_test_files/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/client.php -------------------------------------------------------------------------------- /tests/php_test_files/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/composer.json -------------------------------------------------------------------------------- /tests/php_test_files/delay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/delay.php -------------------------------------------------------------------------------- /tests/php_test_files/echo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/echo.php -------------------------------------------------------------------------------- /tests/php_test_files/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/error.php -------------------------------------------------------------------------------- /tests/php_test_files/exec_ttl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/exec_ttl.php -------------------------------------------------------------------------------- /tests/php_test_files/failboot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/failboot.php -------------------------------------------------------------------------------- /tests/php_test_files/gzip-large-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/gzip-large-file.txt -------------------------------------------------------------------------------- /tests/php_test_files/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/head.php -------------------------------------------------------------------------------- /tests/php_test_files/http/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/client.php -------------------------------------------------------------------------------- /tests/php_test_files/http/cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/cookie.php -------------------------------------------------------------------------------- /tests/php_test_files/http/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/data.php -------------------------------------------------------------------------------- /tests/php_test_files/http/echo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/echo.php -------------------------------------------------------------------------------- /tests/php_test_files/http/echoDelay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/echoDelay.php -------------------------------------------------------------------------------- /tests/php_test_files/http/echoerr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/echoerr.php -------------------------------------------------------------------------------- /tests/php_test_files/http/env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/env.php -------------------------------------------------------------------------------- /tests/php_test_files/http/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/error.php -------------------------------------------------------------------------------- /tests/php_test_files/http/error2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/error2.php -------------------------------------------------------------------------------- /tests/php_test_files/http/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/header.php -------------------------------------------------------------------------------- /tests/php_test_files/http/headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/headers.php -------------------------------------------------------------------------------- /tests/php_test_files/http/ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/ip.php -------------------------------------------------------------------------------- /tests/php_test_files/http/memleak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/memleak.php -------------------------------------------------------------------------------- /tests/php_test_files/http/payload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/payload.php -------------------------------------------------------------------------------- /tests/php_test_files/http/pid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/pid.php -------------------------------------------------------------------------------- /tests/php_test_files/http/push.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/push.php -------------------------------------------------------------------------------- /tests/php_test_files/http/request-uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/request-uri.php -------------------------------------------------------------------------------- /tests/php_test_files/http/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/server.php -------------------------------------------------------------------------------- /tests/php_test_files/http/slow-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/slow-client.php -------------------------------------------------------------------------------- /tests/php_test_files/http/stuck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/stuck.php -------------------------------------------------------------------------------- /tests/php_test_files/http/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/upload.php -------------------------------------------------------------------------------- /tests/php_test_files/http/user-agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/http/user-agent.php -------------------------------------------------------------------------------- /tests/php_test_files/idle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/idle.php -------------------------------------------------------------------------------- /tests/php_test_files/issue659.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/issue659.php -------------------------------------------------------------------------------- /tests/php_test_files/jobs_bad_resp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/jobs_bad_resp.php -------------------------------------------------------------------------------- /tests/php_test_files/jobs_create_memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/jobs_create_memory.php -------------------------------------------------------------------------------- /tests/php_test_files/jobs_err.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/jobs_err.php -------------------------------------------------------------------------------- /tests/php_test_files/jobs_ok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/jobs_ok.php -------------------------------------------------------------------------------- /tests/php_test_files/jobs_respond.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/jobs_respond.php -------------------------------------------------------------------------------- /tests/php_test_files/jobs_respond_sqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/jobs_respond_sqs.php -------------------------------------------------------------------------------- /tests/php_test_files/loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/loop.php -------------------------------------------------------------------------------- /tests/php_test_files/memleak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/memleak.php -------------------------------------------------------------------------------- /tests/php_test_files/metrics-issue-571.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/metrics-issue-571.php -------------------------------------------------------------------------------- /tests/php_test_files/pid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/pid.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker-all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker-all.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker-bench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker-bench.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker-new_relic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker-new_relic.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker-post.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker-slow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker-slow.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker-tcp-cont.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker-tcp-cont.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker-tcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker-tcp.php -------------------------------------------------------------------------------- /tests/php_test_files/psr-worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/psr-worker.php -------------------------------------------------------------------------------- /tests/php_test_files/raw-error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/raw-error.php -------------------------------------------------------------------------------- /tests/php_test_files/sleep-ttl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/sleep-ttl.php -------------------------------------------------------------------------------- /tests/php_test_files/sleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/sleep.php -------------------------------------------------------------------------------- /tests/php_test_files/slow-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/slow-client.php -------------------------------------------------------------------------------- /tests/php_test_files/slow-destroy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/slow-destroy.php -------------------------------------------------------------------------------- /tests/php_test_files/slow-pid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/slow-pid.php -------------------------------------------------------------------------------- /tests/php_test_files/src/EchoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/EchoService.php -------------------------------------------------------------------------------- /tests/php_test_files/src/GPBMetadata/Health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/GPBMetadata/Health.php -------------------------------------------------------------------------------- /tests/php_test_files/src/GPBMetadata/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/GPBMetadata/Service.php -------------------------------------------------------------------------------- /tests/php_test_files/src/Health/HealthCheckRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/Health/HealthCheckRequest.php -------------------------------------------------------------------------------- /tests/php_test_files/src/Health/HealthCheckResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/Health/HealthCheckResponse.php -------------------------------------------------------------------------------- /tests/php_test_files/src/Health/HealthCheckResponse/ServingStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/Health/HealthCheckResponse/ServingStatus.php -------------------------------------------------------------------------------- /tests/php_test_files/src/Health/HealthCheckResponse_ServingStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/Health/HealthCheckResponse_ServingStatus.php -------------------------------------------------------------------------------- /tests/php_test_files/src/Health/HealthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/Health/HealthInterface.php -------------------------------------------------------------------------------- /tests/php_test_files/src/HealthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/HealthService.php -------------------------------------------------------------------------------- /tests/php_test_files/src/Service/EchoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/Service/EchoInterface.php -------------------------------------------------------------------------------- /tests/php_test_files/src/Service/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/src/Service/Message.php -------------------------------------------------------------------------------- /tests/php_test_files/stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/stop.php -------------------------------------------------------------------------------- /tests/php_test_files/supervised.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/supervised.php -------------------------------------------------------------------------------- /tests/php_test_files/temporal-worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/temporal-worker.php -------------------------------------------------------------------------------- /tests/php_test_files/worker-cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/worker-cors.php -------------------------------------------------------------------------------- /tests/php_test_files/worker-deny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/worker-deny.php -------------------------------------------------------------------------------- /tests/php_test_files/worker-grpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/worker-grpc.php -------------------------------------------------------------------------------- /tests/php_test_files/worker-ok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/worker-ok.php -------------------------------------------------------------------------------- /tests/php_test_files/worker-origin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/worker-origin.php -------------------------------------------------------------------------------- /tests/php_test_files/worker-stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/worker-stop.php -------------------------------------------------------------------------------- /tests/php_test_files/worker_new_relic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/php_test_files/worker_new_relic.php -------------------------------------------------------------------------------- /tests/plugins/all/bombers/jobs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/all/bombers/jobs/main.go -------------------------------------------------------------------------------- /tests/plugins/broadcast/broadcast_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/broadcast_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/broadcast/configs/.rr-broadcast-config-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/configs/.rr-broadcast-config-error.yaml -------------------------------------------------------------------------------- /tests/plugins/broadcast/configs/.rr-broadcast-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/configs/.rr-broadcast-global.yaml -------------------------------------------------------------------------------- /tests/plugins/broadcast/configs/.rr-broadcast-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/configs/.rr-broadcast-init.yaml -------------------------------------------------------------------------------- /tests/plugins/broadcast/configs/.rr-broadcast-no-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/configs/.rr-broadcast-no-config.yaml -------------------------------------------------------------------------------- /tests/plugins/broadcast/configs/.rr-broadcast-same-section.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/configs/.rr-broadcast-same-section.yaml -------------------------------------------------------------------------------- /tests/plugins/broadcast/plugins/plugin1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/plugins/plugin1.go -------------------------------------------------------------------------------- /tests/plugins/broadcast/plugins/plugin2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/plugins/plugin2.go -------------------------------------------------------------------------------- /tests/plugins/broadcast/plugins/plugin3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/plugins/plugin3.go -------------------------------------------------------------------------------- /tests/plugins/broadcast/plugins/plugin4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/plugins/plugin4.go -------------------------------------------------------------------------------- /tests/plugins/broadcast/plugins/plugin5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/plugins/plugin5.go -------------------------------------------------------------------------------- /tests/plugins/broadcast/plugins/plugin6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/broadcast/plugins/plugin6.go -------------------------------------------------------------------------------- /tests/plugins/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/config_test.go -------------------------------------------------------------------------------- /tests/plugins/config/configs/.rr-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/configs/.rr-env.yaml -------------------------------------------------------------------------------- /tests/plugins/config/configs/.rr-init-version-2.7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/configs/.rr-init-version-2.7.yaml -------------------------------------------------------------------------------- /tests/plugins/config/configs/.rr-init-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/configs/.rr-init-version.yaml -------------------------------------------------------------------------------- /tests/plugins/config/configs/.rr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/configs/.rr.yaml -------------------------------------------------------------------------------- /tests/plugins/config/plugin1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/plugin1.go -------------------------------------------------------------------------------- /tests/plugins/config/plugin2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/plugin2.go -------------------------------------------------------------------------------- /tests/plugins/config/plugin3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/config/plugin3.go -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-init-duplicate-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-init-duplicate-2.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-init-duplicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-init-duplicate.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-init-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-init-multiple.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-init.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-rq-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-rq-multiple.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-rq-tls-rootca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-rq-tls-rootca.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-rq-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-rq-tls.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/.rr-grpc-rq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/.rr-grpc-rq.yaml -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/test-certs/ca.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/test-certs/ca.cert -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/test-certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/test-certs/ca.key -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/test-certs/ca.srl: -------------------------------------------------------------------------------- 1 | 1ED5BE64C37F8D2C82C435EB9A2C83A644DB5BCB 2 | -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/test-certs/certificate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/test-certs/certificate.conf -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/test-certs/test.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/test-certs/test.csr -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/test-certs/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/test-certs/test.key -------------------------------------------------------------------------------- /tests/plugins/grpc/configs/test-certs/test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/configs/test-certs/test.pem -------------------------------------------------------------------------------- /tests/plugins/grpc/grpc_plugin_gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/grpc_plugin_gzip_test.go -------------------------------------------------------------------------------- /tests/plugins/grpc/grpc_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/grpc_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/grpc/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/external.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/external.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/health/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/health/Makefile -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/health/health.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/health/health.pb.go -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/health/health.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/health/health.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/health/health_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/health/health_grpc.pb.go -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/service/service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/service/service.pb.go -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/service/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/service/service.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/service/service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/service/service_grpc.pb.go -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/test/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/test/test.pb.go -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/test/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/test/test.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/test_dup/test_dup.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/test_dup/test_dup.pb.go -------------------------------------------------------------------------------- /tests/plugins/grpc/proto/test_dup/test_dup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/proto/test_dup/test_dup.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/import/Import/ServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/import/Import/ServiceInterface.php -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/import/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/import/service.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/import/sub/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/import/sub/message.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/import_custom/Test/CustomImport/ServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/import_custom/Test/CustomImport/ServiceInterface.php -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/import_custom/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/import_custom/service.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/import_custom/sub/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/import_custom/sub/message.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/php_namespace/Test/CustomNamespace/ServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/php_namespace/Test/CustomNamespace/ServiceInterface.php -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/php_namespace/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/php_namespace/service.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/simple/TestSimple/SimpleServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/simple/TestSimple/SimpleServiceInterface.php -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/simple/simple.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/simple/simple.proto -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/use_empty/Test/ServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/use_empty/Test/ServiceInterface.php -------------------------------------------------------------------------------- /tests/plugins/grpc/testdata/use_empty/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/grpc/testdata/use_empty/service.proto -------------------------------------------------------------------------------- /tests/plugins/gzip/configs/.rr-http-middlewareNotExist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/gzip/configs/.rr-http-middlewareNotExist.yaml -------------------------------------------------------------------------------- /tests/plugins/gzip/configs/.rr-http-withGzip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/gzip/configs/.rr-http-withGzip.yaml -------------------------------------------------------------------------------- /tests/plugins/gzip/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/gzip/plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/headers/configs/.rr-cors-headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/headers/configs/.rr-cors-headers.yaml -------------------------------------------------------------------------------- /tests/plugins/headers/configs/.rr-headers-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/headers/configs/.rr-headers-init.yaml -------------------------------------------------------------------------------- /tests/plugins/headers/configs/.rr-req-headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/headers/configs/.rr-req-headers.yaml -------------------------------------------------------------------------------- /tests/plugins/headers/configs/.rr-res-headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/headers/configs/.rr-res-headers.yaml -------------------------------------------------------------------------------- /tests/plugins/headers/headers_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/headers/headers_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/http/attributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/attributes_test.go -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-big-req-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-big-req-size.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-broken-pipes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-broken-pipes.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-env.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-fcgi-reqUri.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-fcgi-reqUri.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-fcgi-unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-fcgi-unix.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-fcgi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-fcgi.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-h2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-h2c.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-access-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-access-logs.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-cache-requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-cache-requests.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-cache.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-init.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-ipv6-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-ipv6-2.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-ipv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-ipv6.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-new-relic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-new-relic.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-sendfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-sendfile.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-static-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-static-disabled.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-static-etags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-static-etags.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-static-files-disable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-static-files-disable.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-static-files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-static-files.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-static-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-static-new.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-static-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-static-security.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-static.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http-supervised-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http-supervised-pool.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-http.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-init.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-issue659.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-issue659.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-no-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-no-http.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-post-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-post-test.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-reset-forced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-reset-forced.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-resetter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-resetter.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-ssl-no-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-ssl-no-http.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-ssl-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-ssl-push.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-ssl-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-ssl-redirect.yaml -------------------------------------------------------------------------------- /tests/plugins/http/configs/.rr-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/configs/.rr-ssl.yaml -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/server.crt -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/server.key -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/test-certs/ca.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/test-certs/ca.cert -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/test-certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/test-certs/ca.key -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/test-certs/ca.srl: -------------------------------------------------------------------------------- 1 | 1ED5BE64C37F8D2C82C435EB9A2C83A644DB5BCB 2 | -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/test-certs/certificate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/test-certs/certificate.conf -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/test-certs/test.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/test-certs/test.csr -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/test-certs/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/test-certs/test.key -------------------------------------------------------------------------------- /tests/plugins/http/fixtures/test-certs/test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/fixtures/test-certs/test.pem -------------------------------------------------------------------------------- /tests/plugins/http/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/handler_test.go -------------------------------------------------------------------------------- /tests/plugins/http/http_plugin2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/http_plugin2_test.go -------------------------------------------------------------------------------- /tests/plugins/http/http_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/http_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/http/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/parse_test.go -------------------------------------------------------------------------------- /tests/plugins/http/plugin1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/plugin1.go -------------------------------------------------------------------------------- /tests/plugins/http/plugin_middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/plugin_middleware.go -------------------------------------------------------------------------------- /tests/plugins/http/uploads_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/http/uploads_test.go -------------------------------------------------------------------------------- /tests/plugins/informer/configs/.rr-informer-early-call.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/informer/configs/.rr-informer-early-call.yaml -------------------------------------------------------------------------------- /tests/plugins/informer/configs/.rr-informer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/informer/configs/.rr-informer.yaml -------------------------------------------------------------------------------- /tests/plugins/informer/informer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/informer/informer_test.go -------------------------------------------------------------------------------- /tests/plugins/informer/test_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/informer/test_plugin.go -------------------------------------------------------------------------------- /tests/plugins/informer/test_plugin_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/informer/test_plugin_2.go -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-amqp-declare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-amqp-declare.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-amqp-init-br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-amqp-init-br.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-amqp-init-v27-durable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-amqp-init-v27-durable.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-amqp-init-v27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-amqp-init-v27.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-amqp-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-amqp-init.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-amqp-jobs-err.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-amqp-jobs-err.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-amqp-resp-jobs-ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-amqp-resp-jobs-ok.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/amqp/.rr-no-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/amqp/.rr-no-global.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/beanstalk/.rr-beanstalk-declare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/beanstalk/.rr-beanstalk-declare.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/beanstalk/.rr-beanstalk-init-br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/beanstalk/.rr-beanstalk-init-br.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/beanstalk/.rr-beanstalk-init-v27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/beanstalk/.rr-beanstalk-init-v27.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/beanstalk/.rr-beanstalk-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/beanstalk/.rr-beanstalk-init.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/beanstalk/.rr-beanstalk-jobs-err.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/beanstalk/.rr-beanstalk-jobs-err.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/beanstalk/.rr-beanstalk-respond.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/beanstalk/.rr-beanstalk-respond.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/beanstalk/.rr-no-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/beanstalk/.rr-no-global.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/boltdb/.rr-boltdb-declare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/boltdb/.rr-boltdb-declare.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/boltdb/.rr-boltdb-init-v27-br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/boltdb/.rr-boltdb-init-v27-br.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/boltdb/.rr-boltdb-init-v27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/boltdb/.rr-boltdb-init-v27.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/boltdb/.rr-boltdb-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/boltdb/.rr-boltdb-init.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/boltdb/.rr-boltdb-jobs-err.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/boltdb/.rr-boltdb-jobs-err.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/boltdb/.rr-no-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/boltdb/.rr-no-global.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/configs/.rr-jobs-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/configs/.rr-jobs-init.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/configs/.rr-jobs-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/configs/.rr-jobs-metrics.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/durability/.rr-amqp-durability-redial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/durability/.rr-amqp-durability-redial.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/durability/.rr-beanstalk-durability-redial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/durability/.rr-beanstalk-durability-redial.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/durability/.rr-nats-durability-redial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/durability/.rr-nats-durability-redial.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/durability/.rr-sqs-durability-redial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/durability/.rr-sqs-durability-redial.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/helpers.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_amqp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_amqp_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_beanstalk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_beanstalk_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_boltdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_boltdb_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_general_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_general_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_memory_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_nats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_nats_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_sqs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_sqs_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/jobs_with_toxics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/jobs_with_toxics_test.go -------------------------------------------------------------------------------- /tests/plugins/jobs/memory/.rr-memory-create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/memory/.rr-memory-create.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/memory/.rr-memory-declare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/memory/.rr-memory-declare.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/memory/.rr-memory-init-v27-br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/memory/.rr-memory-init-v27-br.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/memory/.rr-memory-init-v27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/memory/.rr-memory-init-v27.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/memory/.rr-memory-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/memory/.rr-memory-init.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/memory/.rr-memory-jobs-err.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/memory/.rr-memory-jobs-err.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/memory/.rr-memory-pause-resume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/memory/.rr-memory-pause-resume.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-nats-declare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-nats-declare.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-nats-init-v27-br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-nats-init-v27-br.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-nats-init-v27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-nats-init-v27.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-nats-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-nats-init.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-nats-jobs-err.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-nats-jobs-err.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-nats-respond.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-nats-respond.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-nats-stat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-nats-stat.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/nats/.rr-no-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/nats/.rr-no-global.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/sqs/.rr-no-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/sqs/.rr-no-global.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/sqs/.rr-sqs-declare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/sqs/.rr-sqs-declare.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/sqs/.rr-sqs-init-v27-br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/sqs/.rr-sqs-init-v27-br.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/sqs/.rr-sqs-init-v27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/sqs/.rr-sqs-init-v27.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/sqs/.rr-sqs-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/sqs/.rr-sqs-init.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/sqs/.rr-sqs-jobs-err.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/sqs/.rr-sqs-jobs-err.yaml -------------------------------------------------------------------------------- /tests/plugins/jobs/sqs/.rr-sqs-respond.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/jobs/sqs/.rr-sqs-respond.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-boltdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-boltdb.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-in-memory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-in-memory.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-kv-bolt-no-interval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-kv-bolt-no-interval.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-kv-bolt-perms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-kv-bolt-perms.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-kv-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-kv-init.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-memcached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-memcached.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-redis-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-redis-global.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-redis-no-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-redis-no-config.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/configs/.rr-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/configs/.rr-redis.yaml -------------------------------------------------------------------------------- /tests/plugins/kv/storage_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/kv/storage_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/logger/configs/.rr-file-logger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/logger/configs/.rr-file-logger.yaml -------------------------------------------------------------------------------- /tests/plugins/logger/configs/.rr-no-logger.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/logger/configs/.rr-no-logger2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/logger/configs/.rr-no-logger2.yaml -------------------------------------------------------------------------------- /tests/plugins/logger/configs/.rr-raw-mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/logger/configs/.rr-raw-mode.yaml -------------------------------------------------------------------------------- /tests/plugins/logger/configs/.rr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/logger/configs/.rr.yaml -------------------------------------------------------------------------------- /tests/plugins/logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/logger/logger_test.go -------------------------------------------------------------------------------- /tests/plugins/logger/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/logger/plugin.go -------------------------------------------------------------------------------- /tests/plugins/metrics/configs/.rr-http-metrics-no-free-workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/metrics/configs/.rr-http-metrics-no-free-workers.yaml -------------------------------------------------------------------------------- /tests/plugins/metrics/configs/.rr-http-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/metrics/configs/.rr-http-metrics.yaml -------------------------------------------------------------------------------- /tests/plugins/metrics/configs/.rr-issue-571.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/metrics/configs/.rr-issue-571.yaml -------------------------------------------------------------------------------- /tests/plugins/metrics/configs/.rr-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/metrics/configs/.rr-test.yaml -------------------------------------------------------------------------------- /tests/plugins/metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/metrics/metrics_test.go -------------------------------------------------------------------------------- /tests/plugins/metrics/plugin1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/metrics/plugin1.go -------------------------------------------------------------------------------- /tests/plugins/reload/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/reload/config_test.go -------------------------------------------------------------------------------- /tests/plugins/reload/configs/.rr-reload-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/reload/configs/.rr-reload-2.yaml -------------------------------------------------------------------------------- /tests/plugins/reload/configs/.rr-reload-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/reload/configs/.rr-reload-3.yaml -------------------------------------------------------------------------------- /tests/plugins/reload/configs/.rr-reload-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/reload/configs/.rr-reload-4.yaml -------------------------------------------------------------------------------- /tests/plugins/reload/configs/.rr-reload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/reload/configs/.rr-reload.yaml -------------------------------------------------------------------------------- /tests/plugins/reload/reload_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/reload/reload_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/resetter/.rr-resetter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/resetter/.rr-resetter.yaml -------------------------------------------------------------------------------- /tests/plugins/resetter/resetter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/resetter/resetter_test.go -------------------------------------------------------------------------------- /tests/plugins/resetter/test_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/resetter/test_plugin.go -------------------------------------------------------------------------------- /tests/plugins/rpc/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/rpc/config_test.go -------------------------------------------------------------------------------- /tests/plugins/rpc/configs/.rr-rpc-disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/rpc/configs/.rr-rpc-disabled.yaml -------------------------------------------------------------------------------- /tests/plugins/rpc/configs/.rr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/rpc/configs/.rr.yaml -------------------------------------------------------------------------------- /tests/plugins/rpc/plugin1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/rpc/plugin1.go -------------------------------------------------------------------------------- /tests/plugins/rpc/plugin2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/rpc/plugin2.go -------------------------------------------------------------------------------- /tests/plugins/rpc/rpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/rpc/rpc_test.go -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-no-app-section.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-no-app-section.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-sockets-on-init-fast-close.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-sockets-on-init-fast-close.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-sockets-on-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-sockets-on-init.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-sockets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-sockets.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-tcp-on-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-tcp-on-init.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-tcp.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-wrong-command-on-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-wrong-command-on-init.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-wrong-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-wrong-command.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr-wrong-relay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr-wrong-relay.yaml -------------------------------------------------------------------------------- /tests/plugins/server/configs/.rr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/configs/.rr.yaml -------------------------------------------------------------------------------- /tests/plugins/server/plugin_pipes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/plugin_pipes.go -------------------------------------------------------------------------------- /tests/plugins/server/plugin_sockets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/plugin_sockets.go -------------------------------------------------------------------------------- /tests/plugins/server/plugin_tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/plugin_tcp.go -------------------------------------------------------------------------------- /tests/plugins/server/server_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/server_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/server/socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/socket.php -------------------------------------------------------------------------------- /tests/plugins/server/tcp-on-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/tcp-on-init.php -------------------------------------------------------------------------------- /tests/plugins/server/tcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/server/tcp.php -------------------------------------------------------------------------------- /tests/plugins/service/configs/.rr-service-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/configs/.rr-service-env.yaml -------------------------------------------------------------------------------- /tests/plugins/service/configs/.rr-service-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/configs/.rr-service-error.yaml -------------------------------------------------------------------------------- /tests/plugins/service/configs/.rr-service-init-stdout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/configs/.rr-service-init-stdout.yaml -------------------------------------------------------------------------------- /tests/plugins/service/configs/.rr-service-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/configs/.rr-service-init.yaml -------------------------------------------------------------------------------- /tests/plugins/service/configs/.rr-service-init_win.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/configs/.rr-service-init_win.yaml -------------------------------------------------------------------------------- /tests/plugins/service/configs/.rr-service-restarts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/configs/.rr-service-restarts.yaml -------------------------------------------------------------------------------- /tests/plugins/service/service_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/service_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/service/test_files/loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/test_files/loop.php -------------------------------------------------------------------------------- /tests/plugins/service/test_files/loop_env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/test_files/loop_env.php -------------------------------------------------------------------------------- /tests/plugins/service/test_files/loop_stdout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/test_files/loop_stdout.php -------------------------------------------------------------------------------- /tests/plugins/service/test_files/test_binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/service/test_files/test_binary -------------------------------------------------------------------------------- /tests/plugins/status/configs/.rr-ready-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/status/configs/.rr-ready-init.yaml -------------------------------------------------------------------------------- /tests/plugins/status/configs/.rr-status-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/status/configs/.rr-status-init.yaml -------------------------------------------------------------------------------- /tests/plugins/status/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/status/plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/tcp/configs/.rr-tcp-close.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/tcp/configs/.rr-tcp-close.yaml -------------------------------------------------------------------------------- /tests/plugins/tcp/configs/.rr-tcp-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/tcp/configs/.rr-tcp-empty.yaml -------------------------------------------------------------------------------- /tests/plugins/tcp/configs/.rr-tcp-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/tcp/configs/.rr-tcp-full.yaml -------------------------------------------------------------------------------- /tests/plugins/tcp/configs/.rr-tcp-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/tcp/configs/.rr-tcp-init.yaml -------------------------------------------------------------------------------- /tests/plugins/tcp/tcp_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/tcp/tcp_plugin_test.go -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-allow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-allow.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-allow2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-allow2.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-broker-no-section.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-broker-no-section.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-deny.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-deny2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-deny2.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-init.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-redis.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/configs/.rr-websockets-stop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/configs/.rr-websockets-stop.yaml -------------------------------------------------------------------------------- /tests/plugins/websockets/websocket_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-server/roadrunner-plugins/HEAD/tests/plugins/websockets/websocket_plugin_test.go -------------------------------------------------------------------------------- /tests/sample.txt: -------------------------------------------------------------------------------- 1 | sample 2 | --------------------------------------------------------------------------------