Skip to content

Commit

Permalink
realizando algumas refatorações, adicionando cap 3, permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
feroline committed Sep 4, 2024
1 parent f728605 commit 03f8e31
Show file tree
Hide file tree
Showing 16 changed files with 96 additions and 38 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# feroline.qa-bentevi
Blog no qual tem o objetivo de compartilhar conhecimento sobre a área de qualidade de software e tecnologia.

Blog com o objetivo de compartilhar conhecimento sobre a área de qualidade de software e tecnologia.
Resumo CTFL 4.0 - ISTQB - BSTQB

Acesso em : https://feroline.github.io/feroline.qa-bentevi/
14 changes: 14 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,18 @@ baseurl: /feroline.qa-bentevi
timezone: America/Araguaina
collections_dir: collections
collections:
posts:
output: true
permalink: /:categories/:slug
ctfl_resumo:
output: false

defaults:
- scope:
path: '_posts/resumo-ctfl'
type: 'posts'
values:
layout: 'CTFL-resumo'
subtitle: 'Resumo CTFL 4.0'
author: 'Ana Carolina Rodrigues Rocha'
category: 'resumo-ctfl'
6 changes: 0 additions & 6 deletions _includes/mountAccordion.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
<!--
@VARIAVEL: item, que representa o arquivo da collection recebida que será montada com seus respectivos dados
@ESTRUTURA: do accordion item{subcapitulo:boolean, subindice:boolean, indice:string, title:string, content: <html>|string}:
@RETORNA: o accordion montado com todos os dados da collection recebida
-->
<div class="accordion accordion-flush {% if include.item.subcapitulo == true %} ms-3 {% endif %}">

<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#{{item.indice}}" aria-expanded="false" aria-controls="flush-collapseOne">
<!-- <b> {%if include.item.order != 1 %} {{include.item.indice}} - {% endif %} {{include.item.title}}</b> -->
<b>{{include.item.indice}} - {{include.item.title}}</b>
</button>
</h2>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta name="description"
content="Conteúdo sobre Qualidade de software, automação de testes, teste de software e Certified Tester Foundation Level">
<meta name="keywords"
content="resumo-ctfl ctfl bstqb istqb certified-tester-foundation-level syllabus-4.0 test teste automação automation QA Quality-Assurance ">
content="resumo ctfl bstqb istqb certified tester foundation level syllabus 4 test teste automação automacao automation QA quality assurance">

<title>{{ page.title }}</title>

Expand Down
2 changes: 1 addition & 1 deletion assets/css/bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion assets/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* TODO: Converter arquivo em SASS para ser melhor interpretado pelo */
:root {
--rodape-height: 6em;
}
Expand Down
20 changes: 10 additions & 10 deletions assets/js/custom.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// TODO: Trazer esse código para atualidade
// TODO: Trazer esse código para atualidade
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar-top").style.top = "0";
} else {
document.getElementById("navbar-top").style.top = "-50px";
}
prevScrollpos = currentScrollPos;
}
window.onscroll = function () {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById('navbar-top').style.top = '0';
} else {
document.getElementById('navbar-top').style.top = '-50px';
}
prevScrollpos = currentScrollPos;
};
2 changes: 0 additions & 2 deletions collections/_ctfl_resumo/capitulo-1/indice-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ subcapitulo: false
title: Fundamentos do Teste - Palavras Chave
---

<!-- TODO: Adicionar plugin do github pages que tem indices organizados automaticamente, retirando o order das variaveis -->

<div class="d-inline">
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/cobertura">
<span class="badge rounded-pill bg-dark">Cobertura</span>
Expand Down
2 changes: 1 addition & 1 deletion collections/_ctfl_resumo/capitulo-2/indice-2-2-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ title: Níveis de Teste
<li><b>Teste de Integração de Componentes:</b> Testa a interface e integração entre os componentes.</li>
<li><b>Teste de Sistema:</b> Testa o comportamento geral do sistema e seus recursos, com tarefas de ponta a ponta.</li>
<li><b>Teste de Integração de Sistema:</b> Testa a interface do sistema e de outros sistemas e serviços externos relacionados. O ambiente de teste é semelhante ao operacional.</li>
<li><b>Teste de Aceite:</b> Se concentra na validação. De preferencia deve ser feito pelos usuários previstos.</li>
<li><b>Teste de Aceite:</b> Se concentra na validação. De preferência deve ser feito pelos usuários previstos.</li>
</ul>
4 changes: 2 additions & 2 deletions collections/_ctfl_resumo/capitulo-2/indice-2-2-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ title: Tipos de Teste
<ul>
<li><b>Teste funcional:</b> responde a pergunta "O que deve fazer ?" . Avalia as funções que um componente ou sistema deve executar. </li>
<li><b>Teste não funcional:</b> responde a pergunta "O quão bom está ?". Avalia as características que não são funções em um sistema, como eficiência de performance, compatibilidade, usabilidade, confiança, segurança, capacidade de manutenção e portabilidade. </li>
<li><b>Teste de Caixa-preta:</b> é baseado na especificação, tendo o principal objetivo de verificar o comportamento do sistema em relação às suas especificações.</li>
<li><b>Teste de Caixa-branca:</b> é baseada na estrutura, tendo o principal objetivo de cobrir a estrutura pelos testes até o nível aceitável.</li>
<li><b>Teste de Caixa-preta:</b> é baseado na especificação, o principal é verificar o comportamento do sistema em relação às suas especificações.</li>
<li><b>Teste de Caixa-branca:</b> é baseada na estrutura,o principal é cobrir a estrutura pelos testes até o nível aceitável.</li>
</ul>
2 changes: 0 additions & 2 deletions collections/_ctfl_resumo/capitulo-2/indice-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ subcapitulo: false
title: Testes ao longo do Ciclo de Vida de Desenvolvimento de Software - Palavras Chave
---

<!-- TODO: Adicionar plugin do github pages que tem indices organizados automaticamente, retirando o order das variaveis -->

<div class="d-inline">
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/teste-de-aceite">
<span class="badge rounded-pill bg-dark">Teste de Aceite</span>
Expand Down
40 changes: 40 additions & 0 deletions collections/_ctfl_resumo/capitulo-3/indice-3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
capitulo: 3
indice: 3
order: 1
subcapitulo: false
title: Teste Estático - Palavras Chave
---

<div class="d-inline">
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/anomalia">
<span class="badge rounded-pill bg-dark">Anomalia</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/teste-dinamico">
<span class="badge rounded-pill bg-dark">Teste Dinâmico</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao-formal">
<span class="badge rounded-pill bg-dark">Revisão Formal</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao-informal">
<span class="badge rounded-pill bg-dark">Revisão Informal</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/inspecao">
<span class="badge rounded-pill bg-dark">Inspeção</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao">
<span class="badge rounded-pill bg-dark">Revisão</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/analise-estatica">
<span class="badge rounded-pill bg-dark">Análise Estática</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/teste-estatico">
<span class="badge rounded-pill bg-dark">Teste Estático</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/revisao-tecnica">
<span class="badge rounded-pill bg-dark">Revisão Técnica</span>
</a>
<a class="text-decoration-none" href="https://glossary.istqb.org/pt_BR/term/walkthrough">
<span class="badge rounded-pill bg-dark">Walkthrough</span>
</a>
</div>
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
---
layout: CTFL-resumo
author: Ana Carolina Rodrigues Rocha
title: Fundamentos do Teste
subtitle: Resumo CTFL 4.0
capitulo: 1
indice: 1
slug: fundamentos-do-teste
---

<p>
Expand All @@ -27,4 +24,4 @@

{% for item in capitulo %}
{% include mountAccordion.html item=item %}
{% endfor %}
{% endfor %}
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
---
layout: CTFL-resumo
author: Ana Carolina Rodrigues Rocha
title: Testes ao longo do Ciclo de Vida de Desenvolvimento de Software
subtitle: Resumo CTFL 4.0
capitulo: 2
indice: 2
slug: testes-ao-longo-do-ciclo-vida-de-desenvolvimento-de-software
---

<div>
<b>Objetivos:</b>
<ul>
Expand All @@ -19,4 +17,4 @@

{% for item in capitulo %}
{% include mountAccordion.html item=item %}
{% endfor %}
{% endfor %}
19 changes: 19 additions & 0 deletions collections/_posts/resumo-ctfl/2024-09-02-capitulo-3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Teste Estático
capitulo: 3
slug: teste-estatico
---

<div>
<b>Objetivos:</b>
<ul>
<li>Aprender sobre os fundamentos dos testes estáticos.</li>
<li>Aprender sobre o processo de feedback e revisão.</li>
</ul>
</div>

{% assign capitulo = site.ctfl_resumo | sort: "order" | where: "capitulo", page.capitulo %}

{% for item in capitulo %}
{% include mountAccordion.html item=item %}
{% endfor %}
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
title: Home

---
<h1 class="justify-content-start"> Últimos posts </h1>

{% for post in site.posts %}

Expand Down

0 comments on commit 03f8e31

Please sign in to comment.