Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
wct-structured-data-testing
Advanced tools
Helper for testing structured data tool with web component tests
A small extension to use with web-component-tester as a wct.hook
that allows you to test your components markup with Google's Structured Data Testing Tool.
Currently doesn't work with versions of WCT newer than: 4.3.1.
npm install wct-structured-data-testing --save-dev
Add the following to wct.conf.js
var structuredDataProxy = require('wct-structured-data-proxy');
module.exports = {
/* example test config */
"verbose": true,
"plugins": {
"local": {
"browsers": ["chrome", "firefox"]
}
},
/* set up test server hooks */
registerHooks: function(wct) {
wct.hook('prepare:webserver', structuredDataProxy.init);
}
};
This has now created the following route in your test framework:
/_structured_data_proxy_
You can then do an XHR POST from the browser, to the local server (which acts as the proxy), within your test suite and validate the results.
You should send the html you want to validate in the POST body, using the key html
.
Here is an example:
<my-element></my-element>
<script>
suite('<nap-seed-element> structured data', function() {
var structuredDataResponse;
suiteSetup((done) => {
var elementHTML = fixture('my-element-fixture').outerHTML;
getStructuredData(elementHTML, function(response){
structuredDataResponse = response;
done();
});
});
/* Simple test for checking there are no structured data errors */
test('No errors in the structured data', function() {
assert.equal(structuredDataResponse.errors, 0);
});
});
/**
* Helper function to pass HTML to proxy API for google structured data tool
<https://developers.google.com/structured-data/testing-tool/>
*/
function getStructuredData(elementHTML, callback) {
var request = new XMLHttpRequest();
request.open('POST', '/_structured_data_proxy_');
request.setRequestHeader('Content-Type', 'application/json;charset=UTF-8');
request.onload = function(e) {
if (request.status == 200) {
var json = JSON.parse(request.response);
callback(json);
} else {
callback();
}
}
request.send(JSON.stringify({ html: elementHTML }));
}
Mainly because Structured Data Testing Tool is not really a public API. I wanted to see if I could automate "SEO" testing, it was pretty straight forward when hijacking this service from the server but WCT tests are written in the browser.
The other problem was that SDT doesn't have cross origin headers - if it did, this would been a walk in the park.
No worries, if you just want to get the data:
var structuredDataProxy = require('wct-structured-data-proxy');
var myHTML = '<h1>You knows it mate<h1>';
structuredDataProxy.getStructuredDataResults(myHTML, function(response){
/**
* response.status = 'success'
* response.statusCode = 200
* response.data = {
* "cse":[..],
* "errors":[..],
* ...
* }
*/
})
FAQs
Helper for testing structured data tool with web component tests
The npm package wct-structured-data-testing receives a total of 1 weekly downloads. As such, wct-structured-data-testing popularity was classified as not popular.
We found that wct-structured-data-testing 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.