From 81e6dc49f5ed66bdc9976bc9450fa4f77c6be59a Mon Sep 17 00:00:00 2001 From: Enrico Fasoli Date: Tue, 28 Apr 2015 14:07:22 +0200 Subject: [PATCH] aumentata di molto copertura dei test --- asjon-testing.coffee | 1 + package.json | 2 +- scripts/circolari.coffee | 2 +- scripts/shell.coffee | 14 +- test/circolari.coffee | 61 + test/circolari.html | 4563 ++++++++++++++++++++++++++++++++++++++ test/shell-test.coffee | 69 + 7 files changed, 4708 insertions(+), 4 deletions(-) create mode 100644 test/circolari.coffee create mode 100644 test/circolari.html create mode 100644 test/shell-test.coffee diff --git a/asjon-testing.coffee b/asjon-testing.coffee index 9638f0f..20ac130 100644 --- a/asjon-testing.coffee +++ b/asjon-testing.coffee @@ -5,6 +5,7 @@ Robot = require("hubot/src/robot") TextMessage = require("hubot/src/message").TextMessage before = (done) -> + process.env.TESTING_ASJON = 'true' robot = new Robot null, "mock-adapter", no, 'asjon' robot.adapter.on 'connected', -> # Initialize mocked environment diff --git a/package.json b/package.json index f732399..2d4fa88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asjon", - "version": "1.3.0", + "version": "1.4.2", "private": true, "author": "Enrico Fasoli ", "description": "Il miglior amico della 5IA", diff --git a/scripts/circolari.coffee b/scripts/circolari.coffee index aae2df6..6bdc193 100644 --- a/scripts/circolari.coffee +++ b/scripts/circolari.coffee @@ -77,7 +77,7 @@ module.exports = (robot) -> list = x.slice 0, (num or 5) msg = list.map (c) -> ['('+c.protocollo.split('/')[0]+')','('+c.data+')',c.titolo].join(' ') - res.send msg.join ' | ' + res.send msg.join('\n') or 'errore' robot.respond /linkami (?:la )?circolare (?:(?:n(?:°)?(?: )?)|numero )?(\d+)/i, (res) -> base = "http://galileicrema.it/Intraitis/documenti/comunicazioni/2014/Circolare" diff --git a/scripts/shell.coffee b/scripts/shell.coffee index d06684f..0d8eb4b 100644 --- a/scripts/shell.coffee +++ b/scripts/shell.coffee @@ -19,7 +19,10 @@ isFromAdmin = (res) -> runCmd = (cmd,res,cb) -> if res? then res.send 'Operazione in corso: '+cmd - cp.exec cmd, (err,stdout,stderr) -> + if process.env.TESTING_ASJON + # Fingi di eseguire l'operazione + res.send 'Operazione "completata": '+cmd + else cp.exec cmd, (err,stdout,stderr) -> if res? if err res.send 'Operazione fallita:\n'+stderr @@ -29,14 +32,21 @@ runCmd = (cmd,res,cb) -> module.exports = (robot) -> robot.respond /aggiornati|scarica (?:gli )?aggiornamenti/i, (res) -> + if !isFromAdmin(res) then return res.send res.random nope runCmd 'git pull && npm install && npm install --dev', res robot.respond /(?:controlla gli )?aggiornamenti/i, (res) -> + if !isFromAdmin(res) then return res.send res.random nope runCmd 'git fetch && git status', res - robot.respond /(?:installa (?:le )?)dipendenze/i, (res) -> + robot.respond /(?:installa (?:le )?)?dipendenze/i, (res) -> + if !isFromAdmin(res) then return res.send res.random nope runCmd 'npm install && npm install --dev', res + robot.respond /(?:esegui (?:i )?)?test/i, (res) -> + if !isFromAdmin(res) then return res.send res.random nope + runCmd 'npm test', res + # Run tests on boot and report to ADMIN if process.env.AUTO_RUN_TESTS and process.env.ADMIN_ROOM dest = room: process.env.ADMIN_ROOM.replace(':','#') diff --git a/test/circolari.coffee b/test/circolari.coffee new file mode 100644 index 0000000..7c5907e --- /dev/null +++ b/test/circolari.coffee @@ -0,0 +1,61 @@ +nock = require 'nock' +expect = require("chai").should() + +Asjon = require '../asjon-testing.coffee' +asjon = undefined + +describe 'modulo circolari', -> + before (done) -> + # Inizializzo robot + Asjon (assa) -> + asjon = assa + after asjon.after + afterEach asjon.clear + require('../scripts/circolari.coffee')(asjon.robot) + done() + + it 'dovrebbe contattare l\'indirizzo corretto', (done) -> + nock('http://galileicrema.it') + .get('/Intraitis/comunicazioni/ComVis.asp?PerChi=Tutti') + .reply 200, '' + ss = [/sto controllando le circolari/i,/errore/i] + acc = 0 + asjon.receive (e,l) -> + l.join().should.match ss[acc] + acc++ + if acc is 2 then done() + asjon.send 'asjon quali sono le ultime circolari?' + + it 'dovrebbe parsare correttamente le circolari', (done) -> + nock('http://galileicrema.it') + .get('/Intraitis/comunicazioni/ComVis.asp?PerChi=Tutti') + .replyWithFile 200, __dirname+'/circolari.html' + expected = '(274) (27/4/2015) SIMULAZIONE PROVE ESAME DI STATO\n(273) (27/4/2015) PROGETTO CAMPIONI SENZA TRUCCO' + ss = ['sto controllando le circolari...',expected] + acc = 0 + asjon.receive (e,l) -> + l.join().should.equal ss[acc] + acc++ + if acc is 2 then done() + asjon.send 'asjon quali sono le ultime 2 circolari?' + + it 'dovrebbe accettare correttamente il numero di circolari da visualizzare', (done) -> + nock('http://galileicrema.it') + .get('/Intraitis/comunicazioni/ComVis.asp?PerChi=Tutti') + .replyWithFile 200, __dirname+'/circolari.html' + ss = 'sto controllando le circolari...' + acc = 0 + asjon.receive (e,l) -> + if acc is 0 + l.join().should.equal ss + else + l.join().split('\n').length.should.equal 5 + acc++ + if acc is 2 then done() + asjon.send 'asjon quali sono le ultime 5 circolari?' + + it 'dovrebbe linkare correttamente il numero di circolari', (done) -> + asjon.receive (e,l) -> + l.join().should.equal 'http://galileicrema.it/Intraitis/documenti/comunicazioni/2014/Circolare228.pdf' + done() + asjon.send 'asjon linkami la circolare 228' diff --git a/test/circolari.html b/test/circolari.html new file mode 100644 index 0000000..127f5a8 --- /dev/null +++ b/test/circolari.html @@ -0,0 +1,4563 @@ + + + + + ITIS News + + + + + + +
+ELENCO COMUNICAZIONI FINO AL 28/4/2015 +

+ + + + + + + + + + +
ProtocolloMittenteTitoloOggettoDataDestinatario
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
274/2014
presidenza
SIMULAZIONE PROVE ESAME DI STATO
seconda prova Ist.Tecnologico
27/4/2015
+ + Docenti + + Studenti
273/2014
presidenza
PROGETTO CAMPIONI SENZA TRUCCO
evento finale
27/4/2015
+ + Docenti + + Genitori + + Studenti
272/2014
presidenza
GIORNATA premiAgalilei
fase della raccolta dati
27/4/2015
Tutti
271/2014
presidenza
LEZIONE FUORI SEDE
visita ad azienda meccanica
24/4/2015
+ + Docenti + + Studenti
270/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI DI ATLETICA LEGGERA
convocazione studenti
24/4/2015
+ + Docenti + + Studenti
269/2014
presidenza
MONTEORE DI ISTITUTO - MAGGIO
primo annuncio
23/4/2015
+ + Docenti + + Studenti
268/2014
presidenza
CONSIGLI DI CLASSE DI MAGGIO (agg.24-04-15)
convocazione e OdG
23/4/2015
Tutti
267/2014
presidenza
LIBRI DI TESTO a.s.2015/2016
riferimento normativo e procedura adozioni
22/4/2015
Tutti
266/2014
presidenza
PROVE PARALLELE DI DISCIPLINA
calendario e modalita'
22/4/2015
+ + Docenti + + Genitori + + Studenti
265/2014
presidenza
INCONTRO CON L’ESPERTO
le sostanze stupefacenti
22/4/2015
+ + Docenti + + Studenti
264/2014
presidenza
SIMULAZIONE PROVE ESAME DI STATO
prima prova
22/4/2015
+ + Docenti + + Studenti
263/2014
presidenza
CONVEGNO
la nostra buona scuola
21/4/2015
+ + Docenti + + Studenti
262/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – GARE DI CORSA E LANCI
selezione studenti
20/4/2015
+ + Docenti + + Studenti
261/2014
presidenza
PROCLAMAZIONE DI SCIOPERO VEN. 24.04.2015
avviso alle famiglie
17/4/2015
Tutti
260/2014
presidenza
CORSO DI PRIMO SOCCORSO
calendario incontro con ASL
17/4/2015
+ + Docenti + + Genitori + + Studenti
259/2014
presidenza
RILEVAMENTO E VERIFICA DATI DIPLOMANDI
modalita' operative
16/4/2015
+ + Docenti + + Studenti
258/2014
presidenza
OLIMPIADI DELLA DANZA
finali nazionali
15/4/2015
+ + Docenti + + Studenti
257/2014
presidenza
ENERGIE RINNOVABILI
incontro con esperto e visita ad impianto produttivo
15/4/2015
+ + Docenti + + Studenti
256/2014
presidenza
LEZIONE FUORI SEDE
visita ad azienda siderurgica
15/4/2015
+ + Docenti + + Studenti
255/2014
presidenza
SIMULAZIONE PROVE ESAME DI STATO
seconda prova Liceo S.A.
15/4/2015
+ + Docenti + + Studenti
254/2014
presidenza
GIOCHI DI ANACLETO 2015
convocazione studenti
15/4/2015
+ + Docenti + + Genitori + + Studenti
253/2014
presidenza
PROGETTO "NONNI SU INTERNET"
attivazione nel nostro istituto
14/4/2015
Tutti
252/2014
presidenza
CORSO PRIMO SOCCORSO CLASSI 4e
variazioni calendario 4LD e 4MA
14/4/2015
+ + Docenti + + Studenti
251/2014
presidenza
PREPARAZIONE PER I TEST DI AMMISSIONE ALLE FACOLTA’ SCIENTIFICHE
calendario incontri 4^
14/4/2015
+ + Docenti + + Studenti
250/2014
presidenza
STAISULPEZZO
giornata dell’arte, musica, sport
14/4/2015
Tutti
249/2014
presidenza
INCONTRO CON ARMA CARABINIERI
cittadinanza e legalita'
14/4/2015
+ + Docenti + + Genitori + + Studenti
248/2014
presidenza
WORK-SHOP DI INFORMATICA
librerie grafiche
13/4/2015
+ + Docenti + + Studenti
247/2014
presidenza
LEZIONE FUORI SEDE
incontro con l’esperto
13/4/2015
+ + Docenti + + Studenti
246/2014
presidenza
ALTERNANZA SCUOLA-LAVORO
proposte di formazione
10/4/2015
+ + Docenti + +
245/2014
presidenza
RIUNIONE DEI RAPPRESENTANTI DI CLASSE
convocazione
10/4/2015
+ + Docenti + + Studenti
244/2014
presidenza
PROGETTO LAUREE SCIENTIFICHE – AMBITO CHIMICA DEI MATERIALI
attivita' orientative
7/4/2015
+ + Docenti + + Genitori + + Studenti
243/2014
presidenza
GRADUATORIE INTERNE DOCENTI T.I.
pubblicazione all'albo
2/4/2015
+ + Docenti + +
242/2014
presidenza
LEZIONE FUORI SEDE
visita ai laboratori di analisi mediche
1/4/2015
+ + Docenti + + Studenti
241/2014
presidenza
LEZIONE FUORI SEDE
laboratorio sull’assorbimento di contaminanti del suolo
1/4/2015
+ + Docenti + + Studenti
240/2014
presidenza
OLIMPIADI INTERNAZIONALI DI INFORMATICA
selezione territoriale
31/3/2015
+ + Docenti + + Studenti
239/2014
presidenza
PROGETTO MiAspettoRISPETTO
calendario e attivita'
31/3/2015
+ + Docenti + + Genitori + + Studenti
238/2014
presidenza
CONSIGLI E ASSEMBLEE DI CLASSE (valut.infraq.li 2q)
variazioni calendario e attribuzione spazi
30/3/2015
Tutti
237/2014
presidenza
GIOCHI SPORTIVI STUDENTSCHI - PALLAVOLO MASCHILE
convocazione studenti
26/3/2015
+ + Docenti + + Genitori + + Studenti
236/2014
presidenza
PROGETTO ALUNNO SICURO
aggiornamento calendario 4LF
25/3/2015
+ + Docenti + + Studenti
235/2014
presidenza
CONSIGLI E ASSEMBLEE DI CLASSE
convocazione, ordine del giorno, calendario
24/3/2015
+ + Docenti + + Genitori + + Studenti
234/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – PALLAVOLO FEMMINILE
convocazione studenti
23/3/2015
+ + Docenti + + Studenti
233/2014
presidenza
GIOCHI DELLA CHIMICA 2015
selezione d'Istituto
21/3/2015
+ + Docenti + + Studenti
232/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI- CALCIO a 5
fase provinciale
20/3/2015
+ + Docenti + + Studenti
231/2014
presidenza
PRE-TEST LAUREE SCIENTIFICHE
modalita' organizzative
20/3/2015
Tutti
230/2014
presidenza
OLIMPIADI INTERNAZIONALI DI SCIENZE
fase regionale
19/3/2015
+ + Docenti + + Studenti
229/2014
presidenza
LEZIONE FUORI SEDE
visita ad azienda chimica 5CA
19/3/2015
+ + Docenti + + Studenti
228/2014
presidenza
LEZIONE FUORI SEDE
laboratorio di biologia molecolare
18/3/2015
+ + Docenti + + Studenti
227/2014
presidenza
CONCORSO TALENT SCOUT 2014/15
premiazione
18/3/2015
Tutti
226/2014
presidenza
PROGETTO ALUNNO SICURO
aggiornamento calendario 4LE, 4LF, 3MA
16/3/2015
+ + Docenti + + Studenti
225/2014
presidenza
PROGETTO WEBTROTTER
seconda fase
14/3/2015
+ + Docenti + + Studenti
224/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – CORSA CAMPESTRE
fase regionale
14/3/2015
+ + Docenti + + Studenti
223/2014
presidenza
KANGOUROU DELLA MATEMATICA 2015
competizione individuale
14/3/2015
+ + Docenti + + Studenti
222/2014
presidenza
LEZIONE FUORI SEDE
progetto Raccontare per Vivere
13/3/2015
Tutti
221/2014
presidenza
PIATTAFORMA MOODLE
disattivazione aree dati studenti
13/3/2015
+ + Docenti + + Studenti
220/2014
presidenza
INCONTRO CON L’ESPERTO
sicurezza informatica
13/3/2015
+ + Docenti + + Studenti
219/2014
presidenza
LEZIONE FUORI SEDE
pendolo di Foucault
11/3/2015
+ + Docenti + + Studenti
218/2014
presidenza
LEZIONE FUORI SEDE
seminario Cervell.a.Mente
11/3/2015
+ + Docenti + + Studenti
217/2014
presidenza
ORIENTAMENTO UNIVERSITARIO
Scuola Normale Superiore di Pisa
10/3/2015
+ + Docenti + + Genitori + + Studenti
216/2014
presidenza
TIROCINI ESTIVI
proposta di adesione
10/3/2015
+ + Docenti + + Genitori + + Studenti
215/2014
presidenza
PRE-TEST LAUREE SCIENTIFICHE
iscrizioni e modalità
10/3/2015
+ + Docenti + + Studenti
214/2014
presidenza
OLIMPIADI DELLA DANZA
fase preparatoria
10/3/2015
Tutti
213/2014
presidenza
PROGETTO WEBTROTTER
convocazione studenti
7/3/2015
+ + Docenti + + Genitori + + Studenti
212/2014
presidenza
LEZIONE FUORI SEDE
film DANTE
7/3/2015
+ + Docenti + + Studenti
211/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – CORSA CAMPESTRE
convocazione studenti
6/3/2015
+ + Docenti + + Studenti
210/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – PALLAVOLO MASCHILE
convocazione studenti
6/3/2015
+ + Docenti + + Studenti
209/2014
presidenza
OLIMPIADI DI SCIENZE
fase di istituto
6/3/2015
+ + Docenti + + Studenti
208/2014
presidenza
ESAMI PET, FIRST, CAE
iscrizioni MAGGIO/GIUGNO 2015
6/3/2015
Tutti
207/2014
presidenza
POMERIGGI A SCUOLA
inizio attività
6/3/2015
Tutti
206/2014
presidenza
PROGETTO ALUNNO SICURO
aggiornamento calendario
4/3/2015
+ + Docenti + + Studenti
205/2014
presidenza
SCUOLA VOLONTARIATO PER EXPO 2015
raccolta candidature
4/3/2015
Tutti
204/2014
presidenza
INTERVENTI DI RECUPERO LACUNE 1o QUADRIMESTE
inserimento dati nel Registro Elettronico
4/3/2015
+ + Docenti + + Genitori + + Studenti
203/2014
presidenza
LEZIONE FUORI SEDE
convegno EUROPA IN CHE SENSO?
4/3/2015
+ + Docenti + + Studenti
202/2014
presidenza
PREPARAZIONE TEST AMMISSIONE FACOLTA’ SCIENTIFICHE:
iscrizione corso e calendario incontri
3/3/2015
+ + Docenti + + Studenti
201/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – PALLAVOLO FEMMINILE
convocazione studenti
3/3/2015
+ + Docenti + + Genitori + + Studenti
200/2014
presidenza
COSTITUZIONE DELLE COMMISSIONI D’ESAME DI STATO
presentazione domanda ON LINE
2/3/2015
+ + Docenti + +
199/2014
presidenza
LEZIONE FUORI SEDE
spettacolo teatrale in lingua inglese
2/3/2015
+ + Docenti + + Studenti
198/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – PALLAVOLO MASCHILE
convocazione studenti
28/2/2015
+ + Docenti + + Genitori + + Studenti
197/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI - CALCIO a 5
convocazione studenti
28/2/2015
+ + Docenti + + Studenti
196/2014
presidenza
GARA DI MATEMATICA A SQUADRE
convocazione studenti
28/2/2015
+ + Docenti + + Genitori + + Studenti
195/2014
presidenza
LEZIONE FUORI SEDE
visite ad azienda chimica
27/2/2015
+ + Docenti + + Genitori + + Studenti
194/2014
presidenza
GRADUATORIE D'ISTITUTO
aggiornamento
27/2/2015
+ + Docenti + +
193/2014
presidenza
PROGETTO IDENTITA' AL LAVORO
incontro finale
26/2/2015
Tutti
192/2014
presidenza
INCONTRO CON L’ESPERTO
evoluzione dei microprocessori
26/2/2015
+ + Docenti + + Studenti
191/2014
presidenza
CORSO PRIMO SOCCORSO CLASSI 4e
calendario
25/2/2015
+ + ATA + + Docenti + + Studenti
190/2014
presidenza
GIORNO DELLA MEMORIA - LEZIONE FUORI SEDE
incontro di testimonianza
24/2/2015
Tutti
189/2014
presidenza
PROGETTO BIOTECNOLOGIE DEL DNA
incontri classe 4BA/SA
23/2/2015
+ + Docenti + + Genitori + + Studenti
188/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – CALCIO a 5
convocazione studenti
23/2/2015
+ + Docenti + + Studenti
187/2014
presidenza
LEZIONE FUORI SEDE
film Torneranno i prati
23/2/2015
+ + Docenti + + Studenti
186/2014
presidenza
PRIMA SIMULAZIONE SECONDA PROVA ESAME STATO
modalita' e assistenze
23/2/2015
+ + Docenti + + Studenti
185/2014
presidenza
MONTEORE DI ISTITUTO – FEBBRAIO
modalita' e assistenze
23/2/2015
+ + Docenti + + Studenti
184/2014
presidenza
CONCORSO INTRAPRENDERE - FASE FINALE
modalita' organizzative
20/2/2015
+ + Docenti + + Studenti
183/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – PALLAVOLO FEMMINILE
convocazione studenti
20/2/2015
+ + Docenti + + Studenti
182/2014
presidenza
PROGETTO LEARNING WEEK CAD3D
recupero ultima giornata
20/2/2015
+ + Docenti + + Studenti
181/2014
presidenza
PROGETTO COMENIUS FUTURE COMES WITH ICT 2013-2015
incontro informativo per genitori e studenti
20/2/2015
+ + Docenti + + Genitori + + Studenti
180/2014
presidenza
MONTEORE DI ISTITUTO – FEBBRAIO
primo annuncio
19/2/2015
Tutti
179/2014
presidenza
PROGETTO LAUREE SCIENTIFICHE – AMBITO CHIMICA BIOLOGICA
attività orientative 4e Liceo S.A.
19/2/2015
+ + Docenti + + Genitori + + Studenti
178/2014
presidenza
PROGETTO LAUREE SCIENTIFICHE – AMBITO BIOTECNOLOGIE
attivita' orientative 3BA
19/2/2015
+ + Docenti + + Genitori + + Studenti
177/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI – PALLAVOLO MASCHILE
convocazione studenti
14/2/2015
+ + Docenti + + Studenti
176/2014
presidenza
GIORNATE DI ORIENTAMENTO UNIVERSITA' & LAVORO
adesioni e modalita'
14/2/2015
+ + Docenti + + Genitori + + Studenti
175/2014
presidenza
OLIMPIADI DELLA DANZA
fase preparatoria
13/2/2015
+ + Docenti + + Studenti
174/2014
presidenza
ALTERNANZA SCUOLA LAVORO
avvio progetto
13/2/2015
+ + Docenti + + Genitori + + Studenti
173/2014
presidenza
RIUNIONI DI MATERIA 2°q.
convocazione e o.d.g.
11/2/2015
+ + Docenti + +
172/2014
presidenza
SCAMBIO CULTURALE CON LONG EATON SCHOOL
incontro preparatorio
11/2/2015
+ + Docenti + + Genitori + + Studenti
171/2014
presidenza
GIORNATE DI ORIENTAMENTO UNIVERSITA' & LAVORO
richiesta adesioni
10/2/2015
+ + Docenti + + Studenti
170/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI- CALCIO a 5
selezione alunni
9/2/2015
+ + Docenti + + Studenti
169/2014
presidenza
LEZIONE FUORI SEDE
musical FAME JR
9/2/2015
+ + Docenti + + Studenti
168/2014
presidenza
GIORNO DEL RICORDO – MARTEDI 10 FEBBRAIO
attività proposte
9/2/2015
Tutti
167/2014
presidenza
SCRUTINI PRIMO QUADRIMESTRE
variazione calendario
9/2/2015
+ + Docenti + +
166/2014
presidenza
EMERGENZA METEO
SOSPENSIONE LEZIONI ED ATTIVITÁ
6/2/2015
Tutti
165/2014
presidenza
GIOCHI SPORTIVI STUDENTESCHI
sci alpino fase provinciale
5/2/2015
+ + Docenti + + Studenti
164/2014
presidenza
PROGETTO ALUNNO SICURO
aggiornamento calendario 4LA, 4LB
4/2/2015
+ + Docenti + + Studenti
163/2014
presidenza
ALTERNANZA SCUOLA LAVORO
visita medica
4/2/2015
+ + Docenti + + Studenti
162/2014
presidenza
PROGETTO LAUREE SCIENTIFICHE – AMBITO BIOTECNOLOGIE
attività orientative 2CC
3/2/2015
+ + Docenti + + Studenti
161/2014
presidenza
INCONTRO CON L’ESPERTO
evoluzione dei microprocessori
3/2/2015
+ + Docenti + + Studenti
160/2014
presidenza
CORSO DI PRIMO SOCCORSO
calendario 4BA/SA
3/2/2015
+ + Docenti + + Genitori + + Studenti
159/2014
presidenza
ASSISTENZA INTERVALLO 2o QUADRIMESTRE
aggiornamento turni
2/2/2015
+ + ATA + + Docenti + +
158/2014
presidenza
PROGETTO S.E.L.F.I.E.
incontro con il dott.Andrea Rubini
31/1/2015
+ + Docenti + + Studenti
157/2014
presidenza
PROGETTO LAUREE SCIENTIFICHE – AMBITO CHIMICA DEI MATERIALI
attività orientative 4CA
31/1/2015
+ + Docenti + + Studenti
156/2014
presidenza
PROGETTO SITE – MADRELINGUA INGLESE
calendario delle presenze
31/1/2015
+ + Docenti + + Genitori + + Studenti
155/2014
presidenza
CHIUSURA AL TRAFFICO VIA M.CANOSSA
informativa
31/1/2015
Tutti
154/2014
presidenza
ALTERNANZA SCUOLA LAVORO
colloqui di selezione
30/1/2015
+ + Docenti + + Studenti
153/2014
presidenza
PROGETTO LEARNING WEEK CAD3D
calendario, variazioni orario e di servizio
30/1/2015
+ + Docenti + + Studenti
152/2014
presidenza
ESAME DI STATO
materia seconda prova e discipline affidate ai commissari esterni
30/1/2015
+ + Docenti + + Studenti
151/2014
presidenza
ARRICCHIMENTO DELL’OFFERTA FORMATIVA
lab.integrativo di Scienze classi 5e Liceo S.A.
30/1/2015
+ + Docenti + + Genitori + + Studenti
150/2014
presidenza
ORARIO SCOLASTICO DEL 2° QUADRIMESTRE
entrata in vigore
30/1/2015
+ + Docenti + + Studenti
149/2014
presidenza
OLIMPIADI DI MATEMATICA
convocazione gara provinciale
29/1/2015
+ + Docenti + + Studenti
148/2014
presidenza
SCRUTINI PRIMO QUADRIMESTRE
variazione calendario
29/1/2015
+ + Docenti + +
147/2014
presidenza
INTERVENTI DI RECUPERO PER IL SUPERAMENTO DELLE LACUNE 1o QUADRIMESTRE
modalità operative
29/1/2015
+ + Docenti + + Genitori + + Studenti
146/2014
presidenza
ALTERNANZA SCUOLA LAVORO
colloqui di selezione
27/1/2015
+ + Docenti + + Studenti
145/2014
presidenza
CONCORSO TALENT SCOUT
fase finale e premiazione
27/1/2015
+ + Docenti + + Studenti
144/2014
presidenza
SOSPENSIONE DELLA PRIMA ORA DI LEZIONE
MARTEDÍ 27.01.15 PER LE CLASSI NELLA SEDE PRINCIPALE
26/1/2015
+ + Docenti + + Studenti
143/2014
presidenza
GIORNO DELLA MEMORIA - LEZIONE FUORI SEDE
spettacolo teatrale NON ERA IL FREDDO LA COSA PEGGIORE
26/1/2015
+ + Docenti + + Studenti
142/2014
presidenza
RIUNIONE DEI RAPPRESENTANTI DI CLASSE
convocazione riunione
24/1/2015
+ + Studenti
141/2014
presidenza
PROGETTO LAUREE SCIENTIFICHE – AMBITO CHIMICA DEI MATERIALI
attività orientative
23/1/2015
+ + Docenti + + Studenti
140/2014
presidenza
ALTERNANZA SCUOLA LAVORO
formazione sulla sicurezza
21/1/2015
+ + Docenti + + Studenti
139/2014
presidenza
PROGETTO S.E.L.F.I.E.
incontro con il dott. Rubini
21/1/2015
+ + Docenti + + Genitori + + Studenti
138/2014
presidenza
COMMISSIONE PROVE PARALLELE
convocazione riunione
21/1/2015
+ + Docenti + +
137/2014
presidenza
SICUREZZA NEL WEB
incontro con la Polizia Postale
20/1/2015
Tutti
136/2014
presidenza
GIORNO DELLA MEMORIA
iniziative e ulteriori proposte
19/1/2015
+ + Docenti + + Studenti
135/2014
presidenza
GIORNO DELLA MEMORIA LEZIONE FUORI SEDE
spettacolo teatrale NON ERA IL FREDDO LA COSA PEGGIORE
19/1/2015
+ + Docenti + + Studenti
134/2014
presidenza
GIORNO DELLA MEMORIA LEZIONE FUORI SEDE
spettacolo teatrale VUOTI A PERDERE
19/1/2015
+ + Docenti + + Studenti
133/2014
presidenza
ORIENTAMENTO CLASSI 2e ISTITUTO TECNOLOGICO
incontro informativo
14/1/2015
+ + Docenti + + Genitori + + Studenti
132/2014
presidenza
SCRUTINI PRIMO QUADRIMESTRE
calendario e O.d.G.
9/1/2015
+ + ATA + + Docenti + +
131/2014
presidenza
ORIENTAMENTO IN USCITA – COMANDI MILITARI
incontro informativo
8/1/2015
+ + Docenti + + Studenti
130/2014
presidenza
CONCORSO TALENT SCOUT
colloqui finali
8/1/2015
+ + Docenti + + Genitori + + Studenti
129/2014
presidenza
CORSO DI FORMAZIONE PRIMO SOCCORSO
secondo incontro
8/1/2015
+ + ATA + + Docenti + +
128/2014
presidenza
ISCRIZIONI A.S. 2015-2016
modalità e scadenze
8/1/2015
+ + Genitori + + Studenti
127/2014
presidenza
ESAMI PET, FIRST, CAE
iscrizioni MARZO 2015
7/1/2015
+ + Docenti + + Genitori + +
126/2014
presidenza
UTILIZZO POSTEGGIO INTERNO ALL’ISTITUTO
direttiva
19/12/2014
Tutti
125/2014
presidenza
XXIX OLIMPIADI DELLA FISICA 2014
risultati gara di primo livello
17/12/2014
+ + Docenti + + Studenti
124/2014
presidenza
OLIMPIADI DELLA DANZA
primo incontro
13/12/2014
+ + Studenti
123/2014
presidenza
KANGOUROU DELL’INFORMATICA 2014-15
risultati della Gara di istituto
12/12/2014
Tutti
122/2014
presidenza
GENERAZIONE WEB
regolarizzazione contributo device
12/12/2014
+ + Genitori + + Studenti
121/2014
presidenza
GIORNO DELLA MEMORIA
proposta alle classi
9/12/2014
+ + Docenti + + Studenti
120/2014
presidenza
MANUTENZIONE PROGRAMMATA SERVER
sospensione servizi
9/12/2014
Tutti
119/2014
presidenza
LEZIONE FUORI SEDE
spettacolo teatrale al S.Domenico
5/12/2014
+ + Docenti + + Studenti
118/2014
presidenza
PROGETTO GENERAZIONE WEB 3
consegna notebook
5/12/2014
+ + Docenti + + Genitori + + Studenti
117/2014
presidenza
PROGETTO “TALENT SCOUT”
convocazione studenti per 2a prova
5/12/2014
+ + Docenti + + Studenti
116/2014
presidenza
PROCLAMAZIONE DI SCIOPERO VENERDI' 12.12.2014
avviso alle famiglie
5/12/2014
Tutti
115/2014
presidenza
XXIX OLIMPIADI DELLA FISICA 2014
convocazioni
3/12/2014
+ + Docenti + + Studenti
114/2014
presidenza
INDIRIZZO MAIL DEI RAPPRESENTANTI DEI GENITORI
informativa
2/12/2014
+ + Docenti + + Genitori + +
113/2014
presidenza
MONTEORE DI ISTITTUTO DICEMBRE 2014
modalità e assistenze RETTIFICHE
2/12/2014
+ + Docenti + + Genitori + + Studenti
112/2014
presidenza
SCUOLA DI PACE 2014-2015
avvio del progetto
2/12/2014
+ + Docenti + + Studenti
111/2014
presidenza
OLIMPIADI INTERNAZIONALI DI INFORMATICA 2014-2015
risultati della selezione d’istituto
1/12/2014
+ + Docenti + + Genitori + + Studenti
110/2014
presidenza
ESAME DI STATO
Regolamento per lo svolgimento della seconda prova scritta
29/11/2014
+ + Docenti + + Studenti
109/2014
presidenza
PROGETTO GENERAZIONE WEB 3
consegna notebook
28/11/2014
+ + Docenti + + Genitori + + Studenti
108/2014
presidenza
OTTIMIZZIAMO
calendario incontri
27/11/2014
+ + Docenti + + Genitori + + Studenti
107/2014
presidenza
MONTEORE DI ISTITUTO DICEMBRE 2014
modalità e assistenze
26/11/2014
+ + Docenti + + Studenti
106/2014
presidenza
CLIL IN PRACTICE
calendario incontri per docenti classi 5e
26/11/2014
+ + Docenti + +
105/2014
presidenza
PROCLAMAZIONE DI SCIOPERO LUNEDI’ 1.12.2014
avviso alle famiglie
26/11/2014
Tutti
104/2014
presidenza
USCITE DIDATTICHE - MUSE DI TRENTO
indicazioni operative
26/11/2014
+ + Docenti + + Genitori + + Studenti
103/2014
presidenza
GIOCHI DI ARCHIMEDE
convocazione
25/11/2014
+ + Docenti + + Studenti
102/2014
presidenza
INCONTRO con S.E. il VESCOVO DI CREMA
celebrazione della S.MESSA
25/11/2014
Tutti
101/2014
presidenza
PROGETTO ACCOGLIENZA
incontri sul web sicuro
24/11/2014
+ + Docenti + + Genitori + + Studenti
100/2014
presidenza
PROGETTI DI EDUCAZIONE ALLA SALUTE
incontro sul tema della donazione di organi
20/11/2014
+ + Docenti + + Genitori + + Studenti
99/2014
presidenza
JOB DAY 2014
evento finale
19/11/2014
+ + Docenti + + Studenti
98/2014
presidenza
ASSICURAZIONE INFORTUNI E R.C. ANNO 2015
adesione
19/11/2014
+ + ATA + + Docenti + +
97/2014
presidenza
GIORNATE APERTE
adesione dei docenti e personale ATA
18/11/2014
+ + ATA + + Docenti + +
96/2014
presidenza
MANIFESTAZIONE LINK 2014
nostri impegni
18/11/2014
+ + Docenti + + Studenti
95/2014
presidenza
ARRICCHIMENTO DELL’OFFERTA FORMATIVA
attività aggiuntive laboratorio Scienze
18/11/2014
+ + Docenti + + Genitori + + Studenti
94/2014
presidenza
CONVEGNO GIOVANI SALUTE E SICUREZZA
partecipazione
18/11/2014
+ + Docenti + + Studenti
93/2014
presidenza
COORDINATORI E SEGRETARI DI CLASSE
incarico
18/11/2014
+ + Docenti + +
92/2014
presidenza
RIUNIONE DEI RAPPRESENTANTI DI CLASSE
convocazione e OdG
15/11/2014
+ + ATA + + Docenti + + Studenti
91/2014
presidenza
CONCORSO CREA IL LOGO
modalità di partecipazione
13/11/2014
+ + Studenti
90/2014
presidenza
CORSO DI APPROFONDIMENTO "TECNOLOGIE COSMETICHE"
calendario
12/11/2014
+ + Docenti + + Genitori + + Studenti
89/2014
presidenza
KANGOUROU DELL’INFORMATICA 2014-2015
gara di istituto
12/11/2014
+ + Docenti + + Genitori + + Studenti
88/2014
presidenza
PROGETTI DI EDUCAZIONE ALLA SALUTE
incontro sul tema della donazione di organi
12/11/2014
+ + Docenti + + Genitori + + Studenti
87/2014
presidenza
GIOCHI DI ARCHIMEDE
fase di istituto
11/11/2014
+ + Docenti + + Studenti
86/2014
presidenza
INTEGRATION STAY WORK EXPERIENCE 2014
incontro con i genitori
8/11/2014
+ + Genitori + + Studenti
85/2014
presidenza
PROGETTO EDUCAZIONE STRADALE
calendario degli incontri
7/11/2014
+ + Docenti + + Genitori + + Studenti
84/2014
presidenza
CORCORSO INTRAPRENDERE
calendario degli incontri
6/11/2014
+ + Docenti + + Studenti
83/2014
presidenza
CONSIGLI E ASSEMBLEE DI CLASSE (valutazioni infraq.li 1°q)
convocazione, ordine del giorno e calendario
5/11/2014
Tutti
82/2014
presidenza
DOCENTI FIDUCIARI a.s 2014/2015
incarico
5/11/2014
Tutti
81/2014
presidenza
OLIMPIADI INTERNAZIONALI DI INFORMATICA 2014-2015
selezione d’Istituto
5/11/2014
+ + Docenti + + Studenti
80/2014
presidenza
ACCESSO AL PORTALE DEI SERVIZI SOCIO SANITARI
attivazione
4/11/2014
+ + ATA + + Docenti + + Studenti
79/2014
presidenza
MediaExpo 2014
partecipazione alla manifestazione
4/11/2014
Tutti
78/2014
presidenza
CORSO DI APPROFONDIMENTO TECNOLOGIE COSMETICHE
iscrizioni
3/11/2014
+ + Docenti + + Genitori + + Studenti
77/2014
presidenza
ELEZIONI STUDENTI IN CONSIGLIO DI ISTITUTO E CONSULTA PROVINCIALE
comunicazione degli eletti
3/11/2014
Tutti
76/2014
presidenza
CORSO DI AGGIORNAMENTO IN LAB.FISICA
programma
31/10/2014
+ + Docenti + +
75/2014
presidenza
COORDINATORI DI MATERIA
variazione
30/10/2014
+ + Docenti + +
74/2014
presidenza
PRESENTAZIONE CANDIDATI CONSIGLIO DI ISTITUTO
calendario
27/10/2014
Tutti
73/2014
presidenza
CORSO DI AGGIORNAMENTO IN STATISTICA
programma
27/10/2014
+ + Docenti + +
72/2014
presidenza
INTEGRATION STAY WORK EXPERIENCE A TOTNES (UK)
proposta agli studenti
27/10/2014
+ + Genitori + + Studenti
71/2014
presidenza
CORSO DI FORMAZIONE PRIMO SOCCORSO
primo incontro
25/10/2014
+ + ATA + + Docenti + +
70/2014
presidenza
PROGRAMMAZIONI DISCIPLINARI
approvazione e consegna
25/10/2014
+ + Docenti + +
69/2014
presidenza
ASSISTENZA DURANTE LA PAUSA DIDATTICA
direttiva ai docenti
24/10/2014
Tutti
68/2014
presidenza
RIUNIONE DEI RAPPRESENTANTI DI CLASSE
convocazione
24/10/2014
+ + Docenti + + Genitori + + Studenti
67/2014
presidenza
COLLEGIO DOCENTI
convocazione e OdG
24/10/2014
+ + ATA + + Docenti + +
66/2014
presidenza
TALENT SCOUT 2014/2015
prima fase
24/10/2014
+ + Docenti + + Studenti
65/2014
presidenza
JOB DAY 2014 LA GIORNATA DEL LAVORO E DEL FARE IMPRESA
aggiornamento attività
24/10/2014
+ + Docenti + + Genitori + + Studenti
64/2014
presidenza
CORSI DI LINGUA INGLESE PET, FIRST, CAE
modalità organizzative
22/10/2014
Tutti
63/2014
presidenza
COLLOQUI SETTIMANALI CON I DOCENTI
attivazione
21/10/2014
Tutti
62/2014
presidenza
CONSIGLI DI CLASSE
variazione calendario
20/10/2014
+ + Docenti + + Genitori + + Studenti
61/2014
presidenza
PROCLAMAZIONE DI SCIOPERO VEN. 24.10.2014
avviso alle famiglie
18/10/2014
Tutti
60/2014
presidenza
PROGETTO ALUNNO SICURO
classi 4e LICEO S.A.
15/10/2014
+ + Docenti + + Studenti
59/2014
presidenza
PROGETTO GENERAZIONE WEB 3
consegna notebook - turno 2
15/10/2014
Tutti
58/2014
presidenza
LEZIONE FUORI SEDE, VISITA MOSTRA CHAGALL E MOSTRA MATEINITALY
indicazioni opeartive
15/10/2014
+ + Docenti + + Studenti
57/2014
presidenza
JOB DAY 2014 LA GIORNATA DEL LAVORO E DEL FARE IMPRESA
calendario visita aziendale
14/10/2014
+ + Docenti + + Genitori + + Studenti
56/2014
presidenza
SCAMBIO CULTURALE CON LONG EATON SCHOOL (UK)
partecipanti e calendario
14/10/2014
+ + Docenti + + Genitori + + Studenti
55/2014
presidenza
PROGETTO ECDL
calendario sessioni
13/10/2014
Tutti
54/2014
presidenza
STAGE "APP-LICHIAMOCI"
calendario sessioni di valutazione
13/10/2014
+ + Docenti + + Studenti
53/2014
presidenza
OLIMPIADI INTERNAZIONALI DI INFORMATICA
edizione 2014-2015
11/10/2014
+ + Docenti + + Studenti
52/2014
presidenza
KANGOUROU DELL’INFORMATICA
VII edizione - 2015
11/10/2014
+ + Docenti + + Studenti
51/2014
presidenza
PIANO DI FORMAZIONE GENERAZIONE WEB
passo due
10/10/2014
+ + Docenti + +
50/2014
presidenza
CONFERENZA SPORT E ALIMENTAZIONE
partecipazione studenti
10/10/2014
+ + Docenti + + Genitori + + Studenti
49/2014
vicepresidenza
GARE DI MATEMATICA A SQUADRE
calendario allenamenti
9/10/2014
+ + Docenti + + Studenti
48/2014
presidenza
PROGETTO GENERAZIONE WEB
attivazione nelle classi 4^ settore meccanica
9/10/2014
+ + Docenti + +
47/2014
presidenza
ELEZIONI RAPPRESENTANTI STUDENTI IN CDI E CONSULTA PROVINCIALE
indizione
9/10/2014
+ + Docenti + + Genitori + + Studenti
46/2014
presidenza
CONSIGLI DI CLASSE
convocazione e odg
8/10/2014
Tutti
45/2014
presidenza
ATTIVITA’ FUNZIONALI ALL'INSEGNAMENTO A.S. 2014/2015
programmazione del CdD
8/10/2014
Tutti
44/2014
presidenza
JOB DAY 2014 LA GIORNATA DEL LAVORO E DEL FARE IMPRESA
incontro preliminare
8/10/2014
+ + Docenti + + Studenti
43/2014
presidenza
RIUNIONI DI SETTORE
convocazione e odg
7/10/2014
+ + ATA + + Docenti + +
42/2014
presidenza
STAGE APP-LICHIAMOCI
sessione di valutazione
3/10/2014
+ + Docenti + + Genitori + + Studenti
41/2014
presidenza
COMENIUS PROJECT FUTURE COMES WITH ICT
meeting agenda
3/10/2014
Tutti
40/2014
presidenza
ORARIO SCOLASTICO DEFINITIVO
entrata in vigore
3/10/2014
Tutti
39/2014
presidenza
PROGETTI
modalità e tempi di presentazione
2/10/2014
+ + Docenti + +
38/2014
presidenza
ELEZIONE DEI RAPPRESENTANTI DEGLI STUDENTI NEI CONSIGLI DI CLASSE
indizione e modalità
2/10/2014
+ + Docenti + + Studenti
37/2014
presidenza
SCAMBIO CULTURALE CON LONG EATON SCHOOL (UK)
incontro di presentazione a genitori e studenti
2/10/2014
+ + Genitori + + Studenti
36/2014
presidenza
PROGETTO GENERAZIONE WEB 3
consegna notebook
2/10/2014
+ + Docenti + + Genitori + + Studenti
35/2014
presidenza
PROGETTO COMENIUS
FUTURE COMES WITH ICT
1/10/2014
+ + Docenti + + Genitori + + Studenti
34/2014
presidenza
RIUNONE DI MATERIA CHIMICA e SCIENZE
convocazione straordinaria
1/10/2014
+ + Docenti + +
33/2014
vicepresidenza
USCITE DIDATTICHE BERGAMO SCIENZA
indicazioni operative
1/10/2014
Tutti
32/2014
presidenza
PROGETTO LEARNING WEEK MATEATTIVA
programma e aule
30/9/2014
+ + Docenti + + Genitori + + Studenti
31/2014
presidenza
ORIENTAMENTO UNIVERSITARIO E LAVORATIVO PER LE CLASSI 4e E 5e
proposte 2014/15
30/9/2014
+ + Docenti + + Genitori + + Studenti
30/2014
presidenza
COLLEGIO DEI DOCENTI
convocazione e odg
30/9/2014
+ + Docenti + +
29/2014
presidenza
CONSIGLI DI CLASSE 1e, 3eIT, 5e
modifica calendario
30/9/2014
+ + Docenti + +
28/2014
presidenza
COORDINATORI DI CLASSE
incarico
30/9/2014
+ + Docenti + +
27/2014
presidenza
ASSEMBLEE DI CLASSE DEI GENITORI CLASSI PRIME
integrazione ordine del giorno
28/9/2014
+ + Docenti + + Genitori + +
26/2014
presidenza
ESTENSIONE DEL DIVIETO DI FUMO
avviso e obbligo di vigilanza
28/9/2014
Tutti
25/2014
presidenza
NORME GENERALI DI COMPORTAMENTO
lettera alle famiglie
27/9/2014
+ + Docenti + + Genitori + + Studenti
24/2014
presidenza
ELEZIONE DEI RAPPRESENTANTI DEI GENITORI NEI CONSIGLI DI CLASSE
convocazione dell’assemblea di classe e indizione elezioni
26/9/2014
Tutti
23/2014
presidenza
SVOLGIMENTO DELLA LIBERA PROFESSIONE
comunicazione ai docenti
26/9/2014
+ + Docenti + +
22/2014
presidenza
RAPPRESENTANTI NEL CONSIGLIO DI ISTITUTO
comunicazione di surroga studenti, docenti, ATA
24/9/2014
Tutti
21/2014
presidenza
INFORTUNI - ORDINE DI SERVIZIO
personale docente e non docente
24/9/2014
Tutti
20/2014
presidenza
INCONTRO DOCENTI SETTORE MECCANICA
convocazione
23/9/2014
+ + Docenti + +
19/2014
presidenza
PROGETTO IDENTITA' AL LAVORO
calendario attivita'
23/9/2014
+ + Docenti + + Genitori + + Studenti
18/2014
presidenza
CONSIGLI DI CLASSE 1e, 3eIT, 5e
convocazione e odg
23/9/2014
+ + Docenti + +
17/2014
presidenza
CORSI DI RIALLINEAMENTO
indicazioni e primo calendario
22/9/2014
+ + Docenti + + Genitori + + Studenti
16/2014
presidenza
SERVIZI DELLA PIATTAFORMA DI eLEARNING
credenziali di accesso ed iscrizione ai corsi
22/9/2014
Tutti
15/2014
presidenza
PIANO DI FORMAZIONE GENERAZIONE WEB
proposta e raccolta adesioni
18/9/2014
+ + Docenti + +
14/2014
presidenza
PROGETTI LEARNING WEEK
MateATtiva
18/9/2014
+ + Docenti + + Genitori + + Studenti
13/2014
presidenza
SCAMBIO GALILEI - LONG EATON SCHOOL
preadesioni
17/9/2014
+ + Docenti + + Genitori + + Studenti
12/2014
presidenza
NOTE DISCIPLINARI
modalità di pubblicazione
17/9/2014
Tutti
11/2014
presidenza
CREDENZIALI PORTALE GENITORI
modalità di consegna
17/9/2014
+ + Genitori + + Studenti
10/2014
presidenza
LIBRETTO SCOLASTICO
consegna e validazione
16/9/2014
Tutti
9/2014
presidenza
ORARIO SCOLASTICO E REGISTRO ELETTRONICO
pubblicazione e attivazione
13/9/2014
Tutti
8/2014
presidenza
PROGETTO ACCOGLIENZA
programma delle attività
12/9/2014
Tutti
7/2014
presidenza
COLLEGIO DEI DOCENTI
ordine del giorno
10/9/2014
+ + ATA + + Docenti + +
6/2014
presidenza
PROGETTO ACCOGLIENZA
riunione coordinatori classi prime
9/9/2014
+ + Docenti + +
5/2014
presidenza
COORDINATORI DI CLASSE
nomina
9/9/2014
+ + Docenti + +
4/2014
presidenza
ESAMI INTEGRATIVI E DI IDONEITA' PER L’A.S. 2014/2015
pubblicazione esiti
9/9/2014
+ + Docenti + + Genitori + + Studenti
3/2014
presidenza
COLLEGIO DEI DOCENTI
convocazione
5/9/2014
+ + ATA + + Docenti + +
2/2014
presidenza
INCONTRO DI INIZIO ANNO SCOLASTICO
classi PRIME 2014/2015
3/9/2014
+ + Genitori + + Studenti
1/2014
presidenza
RIUNIONI DI MATERIA
convocazione e o.d.g.
3/9/2014
+ + ATA + + Docenti + +
+ + + +


+ + Archivio Comunicazioni anno 2013/2014 +
+ + +
+ + diff --git a/test/shell-test.coffee b/test/shell-test.coffee new file mode 100644 index 0000000..52219ca --- /dev/null +++ b/test/shell-test.coffee @@ -0,0 +1,69 @@ +nock = require 'nock' +expect = require("chai").should() + +Asjon = require '../asjon-testing.coffee' +asjon = undefined + +describe 'modulo shell', -> + before (done) -> + # Inizializzo robot + Asjon (assa) -> + asjon = assa + after asjon.after + afterEach asjon.clear + require('../scripts/shell.coffee')(asjon.robot) + done() + + it 'dovrebbe non eseguire i comandi se l\'interlocutore non è autorizzato', (done) -> + asjon.receive (e,l) -> + l.join().should.match /BZBZ (.+)/i + done() + asjon.send 'asjon controlla gli aggiornamenti' + + ss = ['Operazione in corso: ', 'Operazione "completata": '] + regexes = [/Operazione in corso: (.+)/i, /Operazione "completata": (.+)/i] + + it 'dovrebbe riconoscere la stanza autorizzata', (done) -> + process.env.ADMIN_ROOM = ':mocha' + acc = 0 + asjon.receive (e,l) -> + l.join().should.match regexes[acc] + acc++ + if acc is 2 then done() + asjon.send 'asjon controlla gli aggiornamenti' + + it 'dovrebbe eseguire i comandi corretti per installare gli aggiornamenti', (done) -> + cmd = 'git pull && npm install && npm install --dev' + acc = 0 + asjon.receive (e,l) -> + l.join().should.equal ss[acc]+cmd + acc++ + if acc is 2 then done() + asjon.send 'asjon aggiornati' + + it 'dovrebbe eseguire i comandi corretti per controllare gli aggiornamenti', (done) -> + cmd = 'git fetch && git status' + acc = 0 + asjon.receive (e,l) -> + l.join().should.equal ss[acc]+cmd + acc++ + if acc is 2 then done() + asjon.send 'asjon controlla gli aggiornamenti' + + it 'dovrebbe eseguire i comandi corretti per installare le dipendenze', (done) -> + cmd = 'npm install && npm install --dev' + acc = 0 + asjon.receive (e,l) -> + l.join().should.equal ss[acc]+cmd + acc++ + if acc is 2 then done() + asjon.send 'asjon installa le dipendenze' + + it 'dovrebbe eseguire i comandi corretti per eseguire i test', (done) -> + cmd = 'npm test' + acc = 0 + asjon.receive (e,l) -> + l.join().should.equal ss[acc]+cmd + acc++ + if acc is 2 then done() + asjon.send 'asjon esegui i test'