
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Updates:
Dependencies:
require reporting statement:
require_relative '../gem/Perfecto-Reporting'
Usage:
Initialize a new client:
def create_reporting_client
perfectoExecutionContext = PerfectoExecutionContext.new(PerfectoExecutionContextBuilder
.withProject(Project.new('Ruby Reporting', '0.1'))
.withJob(Job.new('Ruby Job' , 1))
.withContextTags('Context tag1', 'Context tag2', 'Context tag 3' ...... )
.withWebDriver(@driver)
.build)
@reporting_client = PerfectoReportiumClient.new(perfectoExecutionContext)
end
Test start command:
@reporting_client.testStart(self.name, TestContext.new('Test tag 1', 'Test tag 2', 'Test tag 13' ...... ))
Test step command:
@reporting_client.testStep('Test step description')
Test stop command:
Note! - in this case i'm using test instance in order to determine test condition (passed / failed)
if self.passed?
@reporting_client.testStop(TestResultSuccess.new)
else
@reporting_client.testStop(TestResultFailure.new(@exception.message, @exception))
end
Running the tests:
test_setup.rb - this file define the test behavior (setup,teardown ...)
test.rb - this is the test class inherent from PerfectoTestingBox which is in test_setup.rb file.
ruby test.rb
Download cacert.pem file from here .
set enviorment variable using the following command in the command line:
set SSL_CERT_FILE=PATH_OF_FILE\cacert.pem
Note! Do not delete this file, it's required for certification.
FAQs
Unknown package
We found that perfecto-reporting demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.