Skip to content

Commit

Permalink
test: corrige testes que não seguiam mais a estrutura do ptst
Browse files Browse the repository at this point in the history
  • Loading branch information
natanfeitosa committed Dec 21, 2023
1 parent 22a1890 commit c1d809d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/parser_test/condicionais_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func TestExpresaoSe(t *testing.T) {
Corpo: &parser.Bloco{
Declaracoes: []parser.BaseNode{
&parser.ChamadaFuncao{
Nome: "imprima",
Identificador: &parser.Identificador{"imprima"},
Argumentos: []parser.BaseNode{
&parser.TextoLiteral{
Valor: "\"Verdadeiro é definitivamente verdadeiro\"",
Expand Down
26 changes: 17 additions & 9 deletions tests/parser_test/funcoes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func TestDeclareFuncaoComRetornoVazio(t *testing.T) {
func TestChamadaFuncaoComArgumentos(t *testing.T) {
esperada := &parser.Programa{}
chamada := &parser.ChamadaFuncao{
Nome: "nenhumaOperacao",
Identificador: &parser.Identificador{"nenhumaOperacao"},
Argumentos: []parser.BaseNode{
&parser.InteiroLiteral{Valor: "2023"},
&parser.TextoLiteral{Valor: "\"portuscript\""},
Expand All @@ -184,7 +184,7 @@ func TestChamadaFuncaoComArgumentos(t *testing.T) {
func TestChamadaFuncaoSemArgumentos(t *testing.T) {
esperada := &parser.Programa{}
chamada := &parser.ChamadaFuncao{
Nome: "nenhumaOperacao",
Identificador: &parser.Identificador{"nenhumaOperacao"},
}
esperada.Declaracoes = append(esperada.Declaracoes, chamada)

Expand All @@ -206,19 +206,27 @@ func TestDeclareChameFuncaoComArgumentos(t *testing.T) {
{Nome: "a"},
{Nome: "b"},
},
Corpo: &parser.Bloco{
Declaracoes: []parser.BaseNode{
&parser.RetorneNode{
Expressao: &parser.OpBinaria{
Esq: &parser.Identificador{Nome: "a"},
Operador: "+",
Dir: &parser.Identificador{Nome: "b"},
},
},
},
},
},
&parser.ChamadaFuncao{
Nome: "imprima",
Identificador: &parser.Identificador{Nome: "imprima"},
Argumentos: []parser.BaseNode{
&parser.TextoLiteral{Valor: "\"2 + 2 =\""},
&parser.ChamadaFuncao{
Nome: "soma",
Identificador: &parser.Identificador{Nome: "soma"},
Argumentos: []parser.BaseNode{
&parser.OpBinaria{
Dir: &parser.InteiroLiteral{Valor: "2"},
Operador: "+",
Esq: &parser.InteiroLiteral{Valor: "2"},
},
&parser.InteiroLiteral{Valor: "2"},
&parser.InteiroLiteral{Valor: "2"},
},
},
},
Expand Down

0 comments on commit c1d809d

Please sign in to comment.