-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
433 additions
and
31 deletions.
There are no files selected for viewing
81 changes: 81 additions & 0 deletions
81
e2e-tests/development-runtime/cypress/integration/remote-file/gatsby-plugin-image.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
before(() => { | ||
cy.exec(`npm run reset`) | ||
}) | ||
|
||
after(() => { | ||
cy.exec(`npm run reset`) | ||
}) | ||
|
||
describe(`remote-file`, () => { | ||
it(`should render correct dimensions`, () => { | ||
cy.visit(`/remote-file/`).waitForRouteChange() | ||
|
||
cy.get('[data-testid="public"]').then($urls => { | ||
const urls = Array.from($urls.map((_, $url) => $url.getAttribute("href"))) | ||
|
||
expect(urls[0].endsWith(".jpg")).to.be.true | ||
expect(urls[1].endsWith(".jpg")).to.be.true | ||
expect(urls[2].endsWith(".jpg")).to.be.true | ||
}) | ||
|
||
cy.get(".resize").then($imgs => { | ||
const imgDimensions = $imgs.map((_, $img) => $img.getBoundingClientRect()) | ||
|
||
expect(imgDimensions[0].width).to.be.equal(100) | ||
expect(imgDimensions[0].height).to.be.equal(133) | ||
expect(imgDimensions[1].width).to.be.equal(100) | ||
expect(imgDimensions[1].height).to.be.equal(160) | ||
expect(imgDimensions[2].width).to.be.equal(100) | ||
expect(imgDimensions[2].height).to.be.equal(67) | ||
}) | ||
|
||
cy.get(".fixed").then($imgs => { | ||
const imgDimensions = $imgs.map((_, $img) => $img.getBoundingClientRect()) | ||
|
||
expect(imgDimensions[0].width).to.be.equal(100) | ||
expect(imgDimensions[0].height).to.be.equal(133) | ||
expect(imgDimensions[1].width).to.be.equal(100) | ||
expect(imgDimensions[1].height).to.be.equal(160) | ||
expect(imgDimensions[2].width).to.be.equal(100) | ||
expect(imgDimensions[2].height).to.be.equal(67) | ||
}) | ||
|
||
cy.get(".constrained").then($imgs => { | ||
const imgDimensions = $imgs.map((_, $img) => $img.getBoundingClientRect()) | ||
|
||
expect(imgDimensions[0].width).to.be.equal(300) | ||
expect(imgDimensions[0].height).to.be.equal(400) | ||
expect(imgDimensions[1].width).to.be.equal(300) | ||
expect(imgDimensions[1].height).to.be.equal(481) | ||
expect(imgDimensions[2].width).to.be.equal(300) | ||
expect(imgDimensions[2].height).to.be.equal(200) | ||
}) | ||
|
||
cy.get(".full").then($imgs => { | ||
const parentWidth = $imgs[0].parentElement.getBoundingClientRect().width | ||
const imgDimensions = $imgs.map((_, $img) => $img.getBoundingClientRect()) | ||
|
||
expect(imgDimensions[0].width).to.be.equal(parentWidth) | ||
expect(Math.ceil(imgDimensions[0].height)).to.be.equal(1229) | ||
expect(imgDimensions[1].width).to.be.equal(parentWidth) | ||
expect(Math.ceil(imgDimensions[1].height)).to.be.equal(1478) | ||
expect(imgDimensions[2].width).to.be.equal(parentWidth) | ||
expect(Math.ceil(imgDimensions[2].height)).to.be.equal(614) | ||
}) | ||
}) | ||
|
||
it(`should render a placeholder`, () => { | ||
cy.visit(`/remote-file/`).waitForRouteChange() | ||
|
||
cy.get(".fixed [data-placeholder-image]") | ||
.first() | ||
.should("have.css", "background-color", "rgb(232, 184, 8)") | ||
cy.get(".constrained [data-placeholder-image]") | ||
.first() | ||
.should("have.prop", "tagName", "IMG") | ||
cy.get(".constrained [data-placeholder-image]") | ||
.first() | ||
.should("contain.prop", "src", "data:image/jpg;base64") | ||
cy.get(".full [data-placeholder-image]").first().should("be.empty") | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
import { graphql } from "gatsby" | ||
import React from "react" | ||
|
||
import { GatsbyImage } from "gatsby-plugin-image" | ||
import Layout from "../components/layout" | ||
import SEO from "../components/seo" | ||
|
||
const RemoteFile = ({ data }) => { | ||
return ( | ||
<Layout> | ||
<SEO title="Remote file" /> | ||
|
||
{data.allMyRemoteFile.nodes.map(node => { | ||
return ( | ||
<div key={node.id}> | ||
<h2> | ||
<a href={node.publicUrl} data-testid="public"> | ||
{node.filename} | ||
</a> | ||
</h2> | ||
<img | ||
src={node.resize.src} | ||
width={node.resize.width} | ||
height={node.resize.height} | ||
alt="" | ||
className="resize" | ||
/> | ||
<div> | ||
<GatsbyImage className="fixed" image={node.fixed} alt="" /> | ||
<GatsbyImage | ||
className="constrained" | ||
image={node.constrained} | ||
alt="" | ||
/> | ||
<GatsbyImage className="full" image={node.full} alt="" /> | ||
</div> | ||
</div> | ||
) | ||
})} | ||
</Layout> | ||
) | ||
} | ||
|
||
export const pageQuery = graphql` | ||
{ | ||
allMyRemoteFile { | ||
nodes { | ||
id | ||
url | ||
filename | ||
publicUrl | ||
resize(width: 100) { | ||
height | ||
width | ||
src | ||
} | ||
fixed: gatsbyImageData( | ||
layout: FIXED | ||
width: 100 | ||
placeholder: DOMINANT_COLOR | ||
) | ||
constrained: gatsbyImageData( | ||
layout: CONSTRAINED | ||
width: 300 | ||
placeholder: BLURRED | ||
) | ||
full: gatsbyImageData(layout: FULL_WIDTH, width: 500, placeholder: NONE) | ||
} | ||
} | ||
} | ||
` | ||
|
||
export default RemoteFile |
73 changes: 73 additions & 0 deletions
73
e2e-tests/production-runtime/cypress/integration/remote-file.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
import { graphql } from "gatsby" | ||
import React from "react" | ||
|
||
import { GatsbyImage } from "gatsby-plugin-image" | ||
import Layout from "../components/layout" | ||
import SEO from "../components/seo" | ||
|
||
const RemoteFile = ({ data }) => { | ||
return ( | ||
<Layout> | ||
<SEO title="Remote file" /> | ||
|
||
{data.allMyRemoteFile.nodes.map(node => { | ||
return ( | ||
<div key={node.id}> | ||
<h2> | ||
<a href={node.publicUrl} data-testid="public"> | ||
{node.filename} | ||
</a> | ||
</h2> | ||
<img | ||
src={node.resize.src} | ||
width={node.resize.width} | ||
height={node.resize.height} | ||
alt="" | ||
className="resize" | ||
/> | ||
<div> | ||
<GatsbyImage className="fixed" image={node.fixed} alt="" /> | ||
<GatsbyImage | ||
className="constrained" | ||
image={node.constrained} | ||
alt="" | ||
/> | ||
<GatsbyImage className="full" image={node.full} alt="" /> | ||
</div> | ||
</div> | ||
) | ||
})} | ||
</Layout> | ||
) | ||
} | ||
|
||
export const pageQuery = graphql` | ||
{ | ||
allMyRemoteFile { | ||
nodes { | ||
id | ||
url | ||
filename | ||
publicUrl | ||
resize(width: 100) { | ||
height | ||
width | ||
src | ||
} | ||
fixed: gatsbyImageData( | ||
layout: FIXED | ||
width: 100 | ||
placeholder: DOMINANT_COLOR | ||
) | ||
constrained: gatsbyImageData( | ||
layout: CONSTRAINED | ||
width: 300 | ||
placeholder: BLURRED | ||
) | ||
full: gatsbyImageData(layout: FULL_WIDTH, width: 500, placeholder: NONE) | ||
} | ||
} | ||
} | ||
` | ||
|
||
export default RemoteFile |
Oops, something went wrong.